
    .primary-bg { background-color: #F97316; }
    .primary-text { color: #F97316; }
    .secondary-bg { background-color: #FFFFFF; }
    .secondary-text { color: #FFFFFF; }
    .step-container {
      position: relative;
      padding: 2rem 0;
    }
    .step-container:not(:last-child):after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: 100%;
      height: 2rem;
      width: 2px;
      background-color: #F97316;
    }
    .step-icon {
      width: 48px;
      height: 48px;
      background-color: #F97316;
      color: #FFFFFF;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      font-weight: bold;
      margin: 0 auto 1rem;
    }
    .background-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }
    .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 0;
    }
    .feature-card {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border: 2px solid transparent;
      border-image: linear-gradient(to right, #F97316, transparent) 1;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .feature-card:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .section-title-underline {
      position: relative;
      display: inline-block;
    }
    .section-title-underline::after {
      content: '';
      position: absolute;
      bottom: -0.5rem;
      left: 50%;
      transform: translateX(-50%);
      width: 50%;
      height: 4px;
      background-color: #F97316;
      border-radius: 2px;
    }

    .faq-bg {
  position: relative;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  overflow: hidden;
}

.footer-bg {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

.footer-bottom-bg {
  background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
}