
    :root {
      --primary-color: #bb431a;
      --primary-dark: #8a3214;
      --secondary-color: #000000;
      --light-gray: #f8f9fa;
      --text-color: #333333;
    }
    
    body {
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      color: var(--text-color);
      line-height: 1.6;
    }
    


         /* Hero Section */
 .survey-hero {
  background: linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.9));
  padding: 100px 0 80px;
  color: white;
  position:relative;
}

    
    .survey-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 70% 30%, rgba(187, 67, 26, 0.2) 0%, transparent 50%);
      pointer-events: none;
    }
    
    .survey-badge {
      background-color: rgba(255, 255, 255, 0.1);
      border: 2px solid rgba(255, 255, 255, 0.2);
      border-radius: 50px;
      padding: 0.5rem 1.5rem;
      display: inline-block;
      margin-bottom: 1.5rem;
    }
    
    .hero-features {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-top: 2rem;
    }
    
    .hero-feature {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    
    .hero-feature i {
      color: #ffc107;
      font-size: 1.2rem;
    }
    
    /* CTA Box */
    .hero-cta-box {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      padding: 2rem;
      margin-top: 2rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    /* Benefits Section */
    .benefits-section {
      padding: 5rem 0;
      background-color: var(--light-gray);
    }
    
    .benefit-card {
      background: white;
      border-radius: 12px;
      padding: 2.5rem 2rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      height: 100%;
      border-top: 4px solid var(--primary-color);
      text-align: center;
    }
    
    .benefit-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }
    
    .benefit-icon {
      width: 80px;
      height: 80px;
      background: rgba(187, 67, 26, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: var(--primary-color);
      font-size: 2rem;
    }
    
    /* Process Section */
    .process-section {
      padding: 5rem 0;
      background: white;
    }
    
    .process-step {
      position: relative;
      padding-left: 3rem;
      margin-bottom: 3rem;
    }
    
    .process-number {
      position: absolute;
      left: 0;
      top: 0;
      width: 50px;
      height: 50px;
      background: var(--primary-color);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.2rem;
    }
    
    /* Survey Options */
    .survey-options-section {
      padding: 5rem 0;
      background: linear-gradient(135deg, var(--light-gray) 0%, #f0f2f5 100%);
    }
    
    .survey-option-card {
      background: white;
      border-radius: 12px;
      padding: 2.5rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    
    .survey-option-card.popular {
      border: 2px solid var(--primary-color);
      transform: scale(1.05);
    }
    
    .survey-option-card.popular::before {
      content: 'MOST POPULAR';
      position: absolute;
      top: 20px;
      right: -35px;
      background: var(--primary-color);
      color: white;
      padding: 0.25rem 3rem;
      transform: rotate(45deg);
      font-size: 0.8rem;
      font-weight: 700;
    }
    
    .price-tag {
      font-size: 3rem;
      font-weight: 800;
      color: var(--primary-color);
      margin: 1.5rem 0;
    }
    
    .price-tag span {
      font-size: 1rem;
      color: var(--text-color);
      font-weight: 400;
    }
    
    .feature-list {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0;
    }
    
    .feature-list li {
      padding: 0.5rem 0;
      border-bottom: 1px solid #f0f0f0;
    }
    
    .feature-list li:last-child {
      border-bottom: none;
    }
    
    .feature-list i {
      color: var(--primary-color);
      margin-right: 0.5rem;
    }
    
    /* Testimonials */
    .testimonials-section {
      padding: 5rem 0;
      background: white;
    }
    
    .testimonial-card {
      background: var(--light-gray);
      border-radius: 12px;
      padding: 2rem;
      margin: 1rem;
      position: relative;
    }
    
    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: 10px;
      left: 20px;
      font-size: 4rem;
      color: rgba(187, 67, 26, 0.1);
      font-family: Georgia, serif;
    }
    
    .client-info {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-top: 1.5rem;
    }
    
    .client-avatar {
      width: 50px;
      height: 50px;
      background: var(--primary-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
    }
    
    /* Final CTA */
    .final-cta-section {
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
      color: white;
      padding: 6rem 0;
      text-align: center;
    }
    
    .final-cta-section h2 {
      font-weight: 800;
      margin-bottom: 1.5rem;
    }
    
    .cta-button {
      display: inline-block;
      background-color: white;
      color: var(--primary-color);
      padding: 1rem 3rem;
      border-radius: 50px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 2px solid white;
      font-size: 1.1rem;
      margin: 0.5rem;
    }
    
    .cta-button:hover {
      background-color: transparent;
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .cta-button-secondary {
      display: inline-block;
      background-color: rgba(255, 255, 255, 0.1);
      color: white;
      padding: 1rem 3rem;
      border-radius: 50px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 2px solid rgba(255, 255, 255, 0.3);
      font-size: 1.1rem;
      margin: 0.5rem;
      backdrop-filter: blur(10px);
    }
    
    .cta-button-secondary:hover {
      background-color: white;
      color: var(--primary-color);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      border-color: white;
    }
    
    /* FAQ */
    .faq-section {
      padding: 5rem 0;
      background-color: var(--light-gray);
    }
    
    .faq-item {
      background: white;
      border-radius: 10px;
      padding: 1.5rem;
      margin-bottom: 1rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }
    
    .faq-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .section-title {
      position: relative;
      margin-bottom: 3rem;
      padding-bottom: 1rem;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 80px;
      height: 4px;
      background-color: var(--primary-color);
      border-radius: 2px;
    }
    
    .section-title.text-center::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    @media (max-width: 768px) {
      .survey-hero {
        padding: 80px 0 60px;
        text-align: center;
      }
      
      .survey-hero h1 {
        font-size: 2.5rem;
      }
      
      .hero-features {
        justify-content: center;
      }
      
      .survey-option-card.popular {
        transform: none;
      }
      
      .cta-button, .cta-button-secondary {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 1rem auto;
      }
    }
