
  :root {
    --primary: #1e5f8c;
    --primary-dark: #164669;
    --primary-light: #3986b8;
    --secondary: #e0a92f;
    --secondary-dark: #c79426;
    --secondary-light: #f3c05e;
    --dark: #2c3e50;
    --light: #f5f7fa;
    --gray: #6c7a89;
    --gray-light: #d5dce5;
    --success: #2ecc71;
    --danger: #e74c3c;
    --text: #333333;
    --text-light: #777777;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --radius: 6px;
    --radius-lg: 12px;
    --font-primary: 'Roboto', sans-serif;
    --font-secondary: 'Playfair Display', serif;
  }

  /* Global Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: var(--font-primary);
    color: var(--text);
    line-height: 1.6;
    background-color: var(--light);
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
    color: var(--dark);
    line-height: 1.3;
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
  }

  h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  p {
    margin-bottom: 1.5rem;
    color: var(--text);
  }

  a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
  }

  a:hover {
    color: var(--primary-dark);
  }

  img {
    max-width: 100%;
    height: auto;
  }

  section {
    padding: 5rem 0;
    position: relative;
  }

  .section-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
  }

  .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  /* Button Styles */
  .cta-button, .primary-btn, .secondary-btn, .submit-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
  }

  .cta-button, .primary-btn, .submit-btn {
    background-color: var(--secondary);
    color: var(--dark);
    box-shadow: var(--shadow);
  }

  .cta-button:hover, .primary-btn:hover, .submit-btn:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
  }

  .secondary-btn {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
  }

  .secondary-btn:hover {
    background-color: var(--white);
    color: var(--primary);
  }

  /* Hero Section */
  .hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
  }

  .hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
  }

  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }

  /* Features Section */
  .features {
    background-color: var(--white);
    text-align: center;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }

  .feature-card {
    background-color: var(--light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
  }

  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
  }

  .feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
  }

  .feature-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
  }

  .feature-card p {
    color: var(--text-light);
    margin-bottom: 0;
  }

  /* Process Section */
  .process {
    background-color: var(--light);
    text-align: center;
  }

  .process-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
  }

  .process-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--primary-light);
    border-radius: 4px;
  }

  .timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
  }

  .timeline-item:last-child {
    margin-bottom: 0;
  }

  .timeline-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 2rem;
    z-index: 2;
    box-shadow: var(--shadow);
  }

  .timeline-content {
    background-color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex: 1;
    text-align: left;
  }

  .timeline-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
  }

  .timeline-content p {
    margin-bottom: 0;
  }

  /* Benefits Section */
  .benefits {
    color: var(--white);
    position: relative;
    text-align: center;
  }

  .benefits h2 {
    color: var(--white);
    margin-bottom: 3rem;
  }

  .benefits h2:after {
    background-color: var(--white);
  }

  .benefits-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }

  .benefit-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .benefit-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    text-align: left;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .benefit-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
  }

  .benefit-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-right: 1.5rem;
    min-width: 50px;
  }

  .benefit-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
  }

  .benefit-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
  }

  /* Testimonials Section */
  .testimonials {
    background-color: var(--white);
    text-align: center;
  }

  .testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
  }

  .testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .testimonial-slide.active {
    display: block;
    opacity: 1;
  }

  .testimonial-content {
    background-color: var(--light);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    position: relative;
  }

  .quote-icon {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
  }

  .quote-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text);
  }

  .client-info {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .client-info img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--primary);
  }

  .client-details h4 {
    margin-bottom: 0.2rem;
    color: var(--primary);
  }

  .client-details p {
    margin-bottom: 0;
    color: var(--text-light);
  }

  .carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
  }

  .prev-btn, .next-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
  }

  .prev-btn:hover, .next-btn:hover {
    color: var(--primary-dark);
  }

  .carousel-indicators {
    display: flex;
    gap: 0.5rem;
    margin: 0 1rem;
  }

  .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-light);
    transition: var(--transition);
    cursor: pointer;
  }

  .indicator.active {
    background-color: var(--primary);
    transform: scale(1.2);
  }

  /* About Section */
  .about {
    background-color: var(--light);
  }

  .about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
  }

  .about-text {
    flex: 1;
    min-width: 300px;
  }

  .about-image {
    flex: 1;
    min-width: 300px;
  }

  .about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    line-height: 1;
  }

  .stat-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
  }

  /* FAQ Section */
  .faq {
    background-color: var(--white);
    text-align: center;
  }

  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .faq-item {
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--light);
  }

  .faq-question {
    padding: 1.5rem;
    background-color: var(--light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
    flex: 1;
    text-align: left;
  }

  .toggle-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
  }

  .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    text-align: left;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
  }

  .faq-item.active .toggle-btn i {
    transform: rotate(45deg);
  }

  /* CTA Section */
  .cta-section {
    color: var(--white);
    text-align: center;
    position: relative;
  }

  .cta-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
  }

  .cta-section h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
  }

  .cta-section h2:after {
    background-color: var(--secondary);
    left: 50%;
    transform: translateX(-50%);
  }

  .cta-section p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Contact Section */
  .contact {
    background-color: var(--light);
    text-align: center;
  }

  .contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-strong);
  }

  form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .form-group {
    text-align: left;
  }

  label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
  }

  input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
  }

  input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 95, 140, 0.2);
  }

  textarea {
    resize: vertical;
    min-height: 120px;
  }

  .consent-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .consent-group input {
    width: auto;
    margin-top: 5px;
  }

  .consent-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
  }

  .submit-btn {
    margin-top: 1rem;
    width: 100%;
  }

  /* Responsive Styles */
  @media (max-width: 991px) {
    h1 {
      font-size: 2.2rem;
    }
    
    h2 {
      font-size: 1.8rem;
    }
    
    .hero h1 {
      font-size: 2.8rem;
    }
    
    .hero p {
      font-size: 1.1rem;
    }
    
    .process-timeline:before {
      left: 30px;
    }
    
    .timeline-item {
      flex-direction: column;
      padding-left: 60px;
    }
    
    .timeline-number {
      position: absolute;
      left: 0;
      top: 0;
      margin-right: 0;
    }
    
    .timeline-content {
      width: 100%;
    }
  }

  @media (max-width: 767px) {
    section {
      padding: 3rem 0;
    }
    
    h1 {
      font-size: 2rem;
    }
    
    h2 {
      font-size: 1.6rem;
    }
    
    .hero {
      min-height: 500px;
    }
    
    .hero h1 {
      font-size: 2.2rem;
    }
    
    .hero p {
      font-size: 1rem;
    }
    
    .features-grid {
      grid-template-columns: 1fr;
    }
    
    .benefit-column {
      min-width: 100%;
    }
    
    .testimonial-content {
      padding: 2rem;
    }
    
    .quote-text {
      font-size: 1rem;
    }
    
    .about-content {
      flex-direction: column;
    }
    
    .about-image {
      order: -1;
    }
    
    .stats-container {
      justify-content: space-around;
    }
    
    .contact-form-container {
      padding: 2rem;
    }
  }
