
  :root {
    --primary: #3a7bd5;
    --primary-dark: #2d62aa;
    --secondary: #ff6b6b;
    --dark: #333333;
    --light: #f8f9fa;
    --gray: #6c757d;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --white: #ffffff;
    --black: #000000;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  }

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

  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
  }

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

  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  p {
    margin-bottom: 1rem;
  }

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

  .btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
  }

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

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

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

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

  .btn-submit {
    background-color: var(--secondary);
    color: var(--white);
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 1rem;
  }

  .btn-submit:hover {
    background-color: darken(var(--secondary), 10%);
  }

  section {
    padding: 80px 0;
    position: relative;
  }

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

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

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

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

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

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

  /* Benefits Section */
  .benefits {
    background-color: var(--light);
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }

  .benefit-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
  }

  .benefit-card:hover {
    transform: translateY(-10px);
  }

  .benefit-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
  }

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

  .features-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .feature-item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .feature-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
  }

  .feature-content {
    flex: 1;
  }

  /* Process Section */
  .process {
    background-color: #f0f4f8;
  }

  .process-steps {
    max-width: 800px;
    margin: 0 auto;
  }

  .step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
  }

  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 30px;
    height: calc(100% - 40px);
    width: 2px;
    background-color: var(--primary);
  }

  .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 20px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
  }

  .step-content {
    padding-top: 10px;
  }

  /* Testimonials Section */
  .testimonials {
    color: var(--white);
    position: relative;
    padding: 100px 0;
  }

  .testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
  }

  .testimonials h2 {
    color: var(--white);
  }

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

  .testimonial-item {
    display: none;
  }

  .testimonial-item.active {
    display: block;
  }

  .testimonial-content {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
  }

  .testimonial-content i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
  }

  .testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
  }

  .author-info h4 {
    margin-bottom: 0.25rem;
  }

  .author-info p {
    margin-bottom: 0;
    opacity: 0.8;
  }

  .testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
  }

  .prev-btn, .next-btn {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
  }

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

  /* Programs Section */
  .programs {
    background-color: var(--white);
  }

  .section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
  }

  .programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  .program-card {
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
  }

  .program-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
  }

  .program-card:hover {
    transform: translateY(-5px);
  }

  .program-card.featured:hover {
    transform: translateY(-5px) scale(1.05);
  }

  .program-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .program-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .program-card ul {
    list-style-type: none;
    margin-bottom: 2rem;
  }

  .program-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eaeaea;
    position: relative;
    padding-left: 25px;
  }

  .program-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
  }

  .program-card .btn {
    margin-top: auto;
  }

  .programs-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: var(--gray);
  }

  /* FAQ Section */
  .faq {
    background-color: #f8f9fa;
  }

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

  .faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

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

  .faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
  }

  .faq-answer {
    background-color: #f8f9fa;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
  }

  .faq-item.active .fa-plus:before {
    content: '\f068';
  }

  /* Contact Section */
  .contact {
    background-color: var(--white);
    padding: 100px 0;
  }

  .contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  .contact-form {
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-top: 40px;
    text-align: left;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(58, 123, 213, 0.2);
  }

  /* Responsive Styles */
  @media (max-width: 991px) {
    h1 {
      font-size: 2.2rem;
    }

    h2 {
      font-size: 1.8rem;
    }

    .hero h1 {
      font-size: 2.8rem;
    }

    .feature-item {
      flex-direction: column !important;
    }

    .feature-image, .feature-content {
      width: 100%;
    }

    .program-card.featured {
      transform: none;
    }

    .program-card.featured:hover {
      transform: translateY(-5px);
    }
  }

  @media (max-width: 767px) {
    section {
      padding: 60px 0;
    }

    .hero {
      min-height: 70vh;
    }

    .hero h1 {
      font-size: 2.2rem;
    }

    .hero p {
      font-size: 1.1rem;
    }

    .benefit-card, .program-card {
      padding: 20px;
    }

    .testimonial-content {
      padding: 20px;
    }

    .contact-form {
      padding: 30px 20px;
    }
  }

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