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

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
      color: #1a1f36;
      background: #ffffff;
    }

    /* Loading State */
    #page-loading {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255,255,255,0.95);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    .spinner {
      width: 50px;
      height: 50px;
      border: 4px solid #f3f4f6;
      border-top-color: #14b8a6;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1f36 100%);
      color: white;
      padding: 100px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="%2314b8a6" opacity="0.1"/></svg>');
      background-size: 50px 50px;
    }

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

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .hero .subtitle {
      font-size: 1.5rem;
      margin-bottom: 30px;
      color: #d1d5db;
    }

    .hero .stats {
      display: flex;
      gap: 40px;
      justify-content: center;
      margin: 40px 0;
      flex-wrap: wrap;
    }

    .stat-item {
      text-align: center;
    }

    .stat-item .number {
      font-size: 2.5rem;
      font-weight: 800;
      color: #14b8a6;
      display: block;
    }

    .stat-item .label {
      font-size: 0.9rem;
      color: #9ca3af;
    }

    /* CTA Button */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 18px 40px;
      font-size: 1.1rem;
      font-weight: 700;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .btn-primary {
      background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
      color: white;
      box-shadow: 0 4px 20px rgba(20, 184, 166, 0.4);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 30px rgba(20, 184, 166, 0.5);
    }

    .btn-secondary {
      background: white;
      color: #14b8a6;
      border: 2px solid #14b8a6;
    }

    .btn-secondary:hover {
      background: #14b8a6;
      color: white;
    }

    /* Section Styles */
    section {
      padding: 80px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    section h2 {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 40px;
      text-align: center;
      color: #1a1f36;
    }

    /* Benefits Grid */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .benefit-card {
      padding: 30px;
      background: #f9fafb;
      border-radius: 16px;
      border: 2px solid #e5e7eb;
      transition: all 0.3s ease;
    }

    .benefit-card:hover {
      border-color: #14b8a6;
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .benefit-card ion-icon {
      font-size: 3rem;
      color: #14b8a6;
      margin-bottom: 15px;
    }

    .benefit-card h3 {
      font-size: 1.4rem;
      margin-bottom: 10px;
      color: #1a1f36;
    }

    .benefit-card p {
      color: #6b7280;
      line-height: 1.6;
    }

    /* Testimonials */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .testimonial-card {
      padding: 30px;
      background: white;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      border-left: 4px solid #14b8a6;
    }

    .testimonial-text {
      font-style: italic;
      color: #4b5563;
      margin-bottom: 20px;
      line-height: 1.8;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(135deg, #14b8a6, #0f766e);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 1.2rem;
    }

    .author-info h4 {
      font-size: 1rem;
      color: #1a1f36;
      margin-bottom: 3px;
    }

    .author-info p {
      font-size: 0.85rem;
      color: #9ca3af;
    }

    /* Curriculum Section */
    .curriculum {
      background: #f9fafb;
    }

    #curriculum-list {
      max-width: 900px;
      margin: 0 auto;
    }

    /* FAQ */
    .faq-item {
      margin-bottom: 20px;
      border: 2px solid #e5e7eb;
      border-radius: 12px;
      overflow: hidden;
    }

    .faq-question {
      padding: 20px;
      background: white;
      cursor: pointer;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease;
    }

    .faq-question:hover {
      background: #f9fafb;
    }

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

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

    /* Final CTA */
    .final-cta {
      background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
      color: white;
      text-align: center;
      padding: 80px 20px;
    }

    .final-cta h2 {
      color: white;
      margin-bottom: 20px;
    }

    .final-cta p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      color: #d1f5f0;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2rem;
      }

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

      section h2 {
        font-size: 1.8rem;
      }

      .hero .stats {
        gap: 20px;
      }

      .stat-item .number {
        font-size: 1.8rem;
      }
    }