 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: #333333;
      background: #FDFCF9;
      overflow-x: hidden;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
    }

    /* Navigation */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(253, 252, 249, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 1.2rem 0;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      padding: 0.8rem 0;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 1.6rem;
      color: #88B04B;
      letter-spacing: -0.5px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .logo:hover {
      transform: scale(1.05);
    }

    .nav-menu {
      display: flex;
      gap: 2.5rem;
      list-style: none;
      align-items: center;
    }

    .nav-link {
      font-weight: 500;
      font-size: 0.95rem;
      color: #333333;
      text-decoration: none;
      cursor: pointer;
      position: relative;
      transition: color 0.3s ease;
      padding: 0.5rem 0;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: #88B04B;
      transition: width 0.3s ease;
    }

    .nav-link:hover {
      color: #88B04B;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .nav-auth {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .btn-nav {
      padding: 0.6rem 1.5rem;
      border-radius: 25px;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      font-family: 'Inter', sans-serif;
    }

    .btn-login {
      background: transparent;
      color: #88B04B;
      border: 2px solid #88B04B;
    }

    .btn-login:hover {
      background: #88B04B;
      color: white;
      box-shadow: 0 4px 15px rgba(136, 176, 75, 0.3);
    }

    .btn-signup {
      background: #88B04B;
      color: white;
    }

    .btn-signup:hover {
      background: #729838;
      box-shadow: 0 4px 15px rgba(136, 176, 75, 0.4);
      transform: translateY(-2px);
    }

    .user-info {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .user-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #88B04B;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 1rem;
    }

    .btn-logout {
      padding: 0.5rem 1.2rem;
      background: transparent;
      color: #333;
      border: 1px solid #B0AFAF;
      border-radius: 20px;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
    }

    .btn-logout:hover {
      background: #333;
      color: white;
      border-color: #333;
    }

    .mobile-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .mobile-toggle span {
      width: 25px;
      height: 3px;
      background: #333;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    /* Hero Section */
    .hero {
      min-height: 100%;
      display: flex;
      align-items: center;
      padding: 8rem 3rem 4rem;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #FDFCF9 0%, #F5F5F2 100%);
    }

    .hero-shapes {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 0;
      overflow: hidden;
    }

    .shape {
      position: absolute;
      border-radius: 50%;
      opacity: 0.1;
    }

    .shape1 {
      width: 400px;
      height: 400px;
      background: #88B04B;
      top: -200px;
      right: -100px;
      animation: float 20s infinite ease-in-out;
    }

    .shape2 {
      width: 300px;
      height: 300px;
      background: #88B04B;
      bottom: -150px;
      left: -100px;
      animation: float 25s infinite ease-in-out reverse;
    }

    .shape3 {
      width: 200px;
      height: 200px;
      background: #B0AFAF;
      top: 50%;
      left: 20%;
      animation: float 15s infinite ease-in-out;
    }

    @keyframes float {
      0%, 100% {
        transform: translate(0, 0) rotate(0deg);
      }
      33% {
        transform: translate(30px, -30px) rotate(120deg);
      }
      66% {
        transform: translate(-20px, 20px) rotate(240deg);
      }
    }

    .hero-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-content {
      opacity: 0;
      animation: fadeInUp 1s ease forwards;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
      from {
        opacity: 0;
        transform: translateY(30px);
      }
    }

    .hero-headline {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 3.5rem;
      line-height: 1.2;
      color: #333333;
      margin-bottom: 1.5rem;
    }

    .hero-subheadline {
      font-size: 1.3rem;
      color: #666;
      margin-bottom: 2.5rem;
      line-height: 1.6;
      font-weight: 300;
    }

    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .btn-primary, .btn-secondary {
      padding: 1rem 2.5rem;
      border-radius: 30px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      font-family: 'Inter', sans-serif;
      text-decoration: none;
      display: inline-block;
    }

    .btn-primary {
      background: #88B04B;
      color: white;
      box-shadow: 0 4px 15px rgba(136, 176, 75, 0.2);
    }

    .btn-primary:hover {
      background: #729838;
      box-shadow: 0 6px 25px rgba(136, 176, 75, 0.4);
      transform: translateY(-3px);
    }

    .btn-secondary {
      background: white;
      color: #333;
      border: 2px solid #B0AFAF;
    }

    .btn-secondary:hover {
      background: #333;
      color: white;
      border-color: #333;
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .hero-images {
      position: relative;
      height: 600px;
      opacity: 0;
      animation: fadeInUp 1s ease 0.3s forwards;
    }

    .image-collage {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .collage-img {
      position: absolute;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
      object-fit: cover;
      animation: slideInBottom 1s ease forwards;
    }

    .collage-img1 {
      width: 60%;
      height: 70%;
      top: 0;
      left: 0;
      z-index: 3;
      animation-delay: 0.5s;
    }

    .collage-img2 {
      width: 50%;
      height: 60%;
      bottom: 0;
      right: 0;
      z-index: 2;
      animation-delay: 0.7s;
    }

    .collage-img3 {
      width: 40%;
      height: 45%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 4;
      animation-delay: 0.9s;
    }

    @keyframes slideInBottom {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .floating-icon {
      position: absolute;
      animation: floatIcon 3s infinite ease-in-out;
    }

    .icon1 {
      top: 10%;
      right: 10%;
      font-size: 2rem;
      animation-delay: 0s;
    }

    .icon2 {
      bottom: 15%;
      left: 5%;
      font-size: 1.5rem;
      animation-delay: 1s;
    }

    .icon3 {
      top: 40%;
      right: 5%;
      font-size: 1.8rem;
      animation-delay: 2s;
    }

    @keyframes floatIcon {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-20px);
      }
    }

    /* Section Styles */
    .section {
      padding: 6rem 3rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .section-header.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .section-title {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 2.8rem;
      color: #333333;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1.2rem;
      color: #666;
      font-weight: 300;
    }

    /* How It Works */
    .steps-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
    }

    .step-card {
      text-align: center;
      padding: 2.5rem;
      background: white;
      border-radius: 20px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      opacity: 0;
      transform: translateY(30px);
    }

    .step-card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .step-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(136, 176, 75, 0.2);
    }

    .step-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      background: linear-gradient(135deg, #88B04B, #729838);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: white;
    }

    .step-number {
      position: absolute;
      top: -10px;
      right: -10px;
      width: 35px;
      height: 35px;
      background: #FDFCF9;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: #88B04B;
      border: 3px solid #88B04B;
    }

    .step-icon-wrapper {
      position: relative;
      display: inline-block;
    }

    .step-title {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 1.5rem;
      color: #333;
      margin-bottom: 1rem;
    }

    .step-description {
      color: #666;
      line-height: 1.7;
    }

    /* Programs Section */
    .programs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2.5rem;
    }

    .program-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      cursor: pointer;
      opacity: 0;
      transform: translateY(30px);
    }

    .program-card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .program-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(136, 176, 75, 0.2);
    }

    .program-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .program-card:hover .program-image {
      transform: scale(1.1);
    }

    .program-content {
      padding: 2rem;
    }

    .program-title {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 1.4rem;
      color: #333;
      margin-bottom: 1rem;
    }

    .program-description {
      color: #666;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .program-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 1rem;
      border-top: 1px solid #f0f0f0;
    }

    .program-duration, .program-level {
      font-size: 0.9rem;
      color: #88B04B;
      font-weight: 500;
    }

    /* Testimonials */
    .testimonials-container {
      position: relative;
      padding: 0 3rem;
    }

    .testimonials-track {
      display: flex;
      gap: 2rem;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 2rem 0;
      scrollbar-width: none;
    }

    .testimonials-track::-webkit-scrollbar {
      display: none;
    }

    .testimonial-card {
      min-width: 400px;
      background: white;
      padding: 2.5rem;
      border-radius: 20px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(136, 176, 75, 0.15);
    }

    .testimonial-quote {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #666;
      margin-bottom: 2rem;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .author-image {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #88B04B;
    }

    .author-info h4 {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      color: #333;
      margin-bottom: 0.3rem;
    }

    .author-info p {
      color: #88B04B;
      font-size: 0.9rem;
    }

    .testimonial-nav {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }

    .nav-arrow {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: white;
      border: 2px solid #88B04B;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1.2rem;
      color: #88B04B;
    }

    .nav-arrow:hover {
      background: #88B04B;
      color: white;
      transform: scale(1.1);
    }

    /* Gallery */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .gallery-item {
      position: relative;
      height: 350px;
      border-radius: 15px;
      overflow: hidden;
      cursor: pointer;
      opacity: 0;
      transform: scale(0.9);
      transition: all 0.4s ease;
    }

    .gallery-item.visible {
      opacity: 1;
      transform: scale(1);
    }

    .gallery-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .gallery-item:hover .gallery-image {
      transform: scale(1.1);
    }

    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(136, 176, 75, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-text {
      color: white;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 1.3rem;
      text-align: center;
      padding: 2rem;
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      z-index: 3000;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .lightbox.active {
      display: flex;
    }

    .lightbox-content {
      max-width: 90%;
      max-height: 90%;
      border-radius: 10px;
      animation: zoomIn 0.3s ease;
    }

    @keyframes zoomIn {
      from {
        transform: scale(0.8);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    .lightbox-close {
      position: absolute;
      top: 2rem;
      right: 2rem;
      width: 50px;
      height: 50px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.5rem;
      color: #333;
      transition: all 0.3s ease;
    }

    .lightbox-close:hover {
      background: #88B04B;
      color: white;
      transform: rotate(90deg);
    }

    /* About Section */
    .about-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-image {
      width: 100%;
      height: 600px;
      border-radius: 20px;
      object-fit: cover;
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
      opacity: 0;
      transform: scale(0.95);
      transition: all 0.8s ease;
    }

    .about-image.visible {
      opacity: 1;
      transform: scale(1);
    }

    .about-content {
      opacity: 0;
      transform: translateX(30px);
      transition: all 0.8s ease;
    }

    .about-content.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .about-content h2 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 2.5rem;
      color: #333;
      margin-bottom: 1.5rem;
    }

    .about-content p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #666;
      margin-bottom: 1.5rem;
    }

    .about-highlight {
      background: #F5F5F2;
      padding: 2rem;
      border-radius: 15px;
      border-left: 4px solid #88B04B;
      margin: 2rem 0;
    }

    .about-highlight h3 {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      color: #88B04B;
      margin-bottom: 1rem;
    }

    .about-values {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .value-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .value-icon {
      width: 40px;
      height: 40px;
      background: #88B04B;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .value-text h4 {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      color: #333;
      margin-bottom: 0.3rem;
    }

    .value-text p {
      font-size: 0.95rem;
      color: #666;
      margin: 0;
    }

    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, #88B04B, #729838);
      padding: 6rem 3rem;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 500px;
      height: 500px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
    }

    .cta-section::after {
      content: '';
      position: absolute;
      bottom: -50%;
      left: -20%;
      width: 600px;
      height: 600px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
    }

    .cta-content {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .cta-content h2 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 3rem;
      margin-bottom: 1.5rem;
    }

    .cta-content p {
      font-size: 1.3rem;
      margin-bottom: 2.5rem;
      opacity: 0.95;
    }

    .cta-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-cta {
      padding: 1.2rem 3rem;
      border-radius: 30px;
      font-weight: 600;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      font-family: 'Inter', sans-serif;
    }

    .btn-cta-primary {
      background: white;
      color: #88B04B;
    }

    .btn-cta-primary:hover {
      background: #FDFCF9;
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .btn-cta-secondary {
      background: transparent;
      color: white;
      border: 2px solid white;
    }

    .btn-cta-secondary:hover {
      background: white;
      color: #88B04B;
      transform: translateY(-3px) scale(1.05);
    }

    /* Footer */
    .footer {
      background: #2a2a2a;
      color: white;
      padding: 4rem 3rem 2rem;
    }

    .footer-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-section h3 {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      color: #88B04B;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.8rem;
    }

    .footer-links a {
      color: #B0AFAF;
      text-decoration: none;
      transition: color 0.3s ease;
      cursor: pointer;
    }

    .footer-links a:hover {
      color: white;
    }

    .newsletter-form {
      display: flex;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    .newsletter-input {
      flex: 1;
      padding: 0.8rem;
      border: 1px solid #B0AFAF;
      border-radius: 5px;
      background: transparent;
      color: white;
      font-family: 'Inter', sans-serif;
    }

    .newsletter-input::placeholder {
      color: #B0AFAF;
    }

    .btn-newsletter {
      padding: 0.8rem 1.5rem;
      background: #88B04B;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
    }

    .btn-newsletter:hover {
      background: #729838;
      transform: scale(1.05);
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-icon {
      width: 40px;
      height: 40px;
      background: #88B04B;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      font-size: 1.2rem;
      transition: all 0.3s ease;
    }

    .social-icon:hover {
      background: white;
      color: #88B04B;
      transform: translateY(-3px);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid #444;
      color: #B0AFAF;
      max-width: 1400px;
      margin: 0 auto;
    }

    /* Page Content */
    .page-content {
      display: none;
      min-height: 80%;
      padding: 8rem 3rem 4rem;
    }

    .page-content.active {
      display: block;
    }

    .page-hero {
      text-align: center;
      margin-bottom: 4rem;
    }

    .page-hero h1 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 3.5rem;
      color: #333;
      margin-bottom: 1rem;
    }

    .page-hero p {
      font-size: 1.3rem;
      color: #666;
    }

    /* Login Page */
    .login-container {
      max-width: 500px;
      margin: 4rem auto;
      background: white;
      padding: 3rem;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .login-container h2 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 2rem;
      text-align: center;
      margin-bottom: 2rem;
      color: #333;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: #333;
    }

    .form-group input {
      width: 100%;
      padding: 1rem;
      border: 2px solid #e0e0e0;
      border-radius: 10px;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      transition: border-color 0.3s ease;
    }

    .form-group input:focus {
      outline: none;
      border-color: #88B04B;
    }

    .btn-submit {
      width: 100%;
      padding: 1.2rem;
      background: #88B04B;
      color: white;
      border: none;
      border-radius: 10px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
      margin-top: 1rem;
    }

    .btn-submit:hover {
      background: #729838;
      transform: translateY(-2px);
      box-shadow: 0 5px 20px rgba(136, 176, 75, 0.3);
    }

    .btn-submit:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    /* Policy Content */
    .policy-content {
      max-width: 900px;
      margin: 0 auto;
      line-height: 1.8;
    }

    .policy-content h2 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 2rem;
      margin: 2.5rem 0 1rem;
      color: #333;
    }

    .policy-content h3 {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 1.4rem;
      margin: 2rem 0 1rem;
      color: #88B04B;
    }

    .policy-content p {
      margin-bottom: 1.5rem;
      color: #666;
    }

    .policy-content ul {
      margin: 1rem 0 1.5rem 2rem;
      color: #666;
    }

    .policy-content li {
      margin-bottom: 0.8rem;
    }

    /* Toast Notification */
    .toast {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      background: #333;
      color: white;
      padding: 1rem 2rem;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      z-index: 4000;
      display: none;
      animation: slideInRight 0.3s ease;
    }

    .toast.active {
      display: block;
    }

    .toast.success {
      background: #88B04B;
    }

    @keyframes slideInRight {
      from {
        transform: translateX(100%);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      z-index: 3000;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      overflow-y: auto;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: white;
      border-radius: 20px;
      max-width: 900px;
      width: 100%;
      max-height: 90%;
      overflow-y: auto;
      position: relative;
      padding: 3rem;
      animation: modalSlideIn 0.3s ease;
    }

    @keyframes modalSlideIn {
      from {
        transform: translateY(-50px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .modal-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      width: 40px;
      height: 40px;
      background: #f0f0f0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.5rem;
      color: #333;
      transition: all 0.3s ease;
    }

    .modal-close:hover {
      background: #88B04B;
      color: white;
      transform: rotate(90deg);
    }

    .modal-content h1 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 2.5rem;
      color: #333;
      margin-bottom: 1rem;
    }

    .hidden {
      display: none !important;
    }

    .loading {
      opacity: 0.6;
      pointer-events: none;
    }

    .spinner {
      border: 3px solid #f3f3f3;
      border-top: 3px solid #88B04B;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      animation: spin 1s linear infinite;
      display: inline-block;
      margin-left: 0.5rem;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .hero-images {
        height: 400px;
      }

      .steps-container {
        grid-template-columns: 1fr;
      }

      .about-container {
        grid-template-columns: 1fr;
      }

      .footer-content {
        grid-template-columns: repeat(2, 1fr);
      }

      .testimonial-card {
        min-width: 350px;
      }
    }

    @media (max-width: 768px) {
      .nav-menu {
        display: none;
      }

      .mobile-toggle {
        display: flex;
      }

      .nav-auth {
        display: none;
      }

      .hero {
        padding: 6rem 2rem 3rem;
      }

      .hero-headline {
        font-size: 2.5rem;
      }

      .section {
        padding: 4rem 2rem;
      }

      .section-title {
        font-size: 2rem;
      }

      .programs-grid {
        grid-template-columns: 1fr;
      }

      .testimonial-card {
        min-width: 300px;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
      }

      .footer-content {
        grid-template-columns: 1fr;
      }

      .cta-content h2 {
        font-size: 2rem;
      }

      .page-hero h1 {
        font-size: 2.5rem;
      }
    }
  /* Navbar Base */
.navbar {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
}

/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-menu li a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #0077cc;
}

/* Auth Buttons */
.nav-auth, .user-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-nav {
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 0.3rem;
  transition: all 0.3s;
}

.btn-login {
  background: #0077cc;
  color: #fff;
}

.btn-login:hover {
  background: #005fa3;
}

.btn-signup {
  background: #e63946;
  color: #fff;
}

.btn-signup:hover {
  background: #b32b38;
}

.btn-logout {
  background: #777;
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 0.3rem;
  cursor: pointer;
}

.user-avatar {
  width: 35px;
  height: 35px;
  background: #0077cc;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: #111;
  display: block;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: #fff;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    gap: 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    border-bottom: 1px solid #eee;
  }

  .nav-menu li a {
    display: block;
    padding: 1rem;
  }

  .nav-auth {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }
}