.free-trial-page .hero-banner {
  background: linear-gradient(135deg, rgba(10, 58, 130, 0.03) 0%, rgba(72, 177, 243, 0.06) 100%);
}

/* Video Section */
.free-trial-page .video-section {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(10, 58, 130, 0.1);
  height: 718px;
}
.free-trial-page .video-section .video-poster {
  position: relative;
  cursor: pointer;
  height: 100%;
}
.free-trial-page .video-section .video-poster img {
  width: 100%;
  display: block;
  border-radius: 16px;
  height: 100%;
  object-fit: cover;
}
.free-trial-page .video-section .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.free-trial-page .video-section .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
}
.free-trial-page .video-section .play-btn svg {
  width: 28px;
  height: 28px;
  color: var(--blue-color);
  margin-right: -2px;
}
.free-trial-page .video-section .video-player {
  display: none;
}
.free-trial-page .video-section.playing .video-poster {
  display: none;
}
.free-trial-page .video-section.playing .video-player {
  display: block;
}

@media (max-width: 768px) {
  .free-trial-page .video-section {
    height: auto;
  }
}

/* Try Now Section */
.free-trial-page .try-now-section {
  background: #F2F8FF;
  border-radius: 16px;
  box-shadow: unset;
  padding: 24px;
}
.free-trial-page .try-now-section h2,
.free-trial-page .help-section h2 {
  font-weight: 700;
  color: var(--blue-color);
  font-size: 32px;
  margin-bottom: 16px;
}
.free-trial-page .try-now-section p,
.free-trial-page .help-section p {
  font-size: 20px;
  font-weight: 400;
  color: #1E1E1E !important;
  opacity: 1 !important;
  margin-bottom: 24px;
}
.free-trial-page .try-now-section li span {
  color: var(--blue-color);
  font-weight: 500;
  font-size: 20px;
}
.free-trial-page .try-now-section li i {
  color: var(--blue-color) !important;
  font-size: 18px;
  margin-top: 10px;
}
.free-trial-page .try-now-section .call-to-action i,
.free-trial-page .help-section .call-to-action i {
  display: none;
}
.free-trial-page .try-now-section .call-to-action,
.free-trial-page .help-section .call-to-action {
  max-width: 170px;
  padding: 15px 20px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.free-trial-page .try-now-section .call-to-action:hover,
.free-trial-page .help-section .call-to-action:hover {
  opacity: 0.9;
}

/* Help Section */
.free-trial-page .help-section {
  background: #EAB9771F;
  border-radius: 16px;
  padding: 24px;
}
.free-trial-page .help-section .call-to-action {
  background: #EAB977;
  color: #1E1E1E;
}
