
    /* Page-specific styles */
    .page-hero {
      min-height: 60vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 120px;
      padding-bottom: 60px;
    }

    .page-hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(236, 72, 153, 0.25), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(124, 58, 237, 0.2), transparent),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(0, 212, 255, 0.15), transparent),
        linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    }

    .page-hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 24px;
      background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(124, 58, 237, 0.2));
      border: 1px solid rgba(236, 72, 153, 0.3);
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--pink);
      margin-bottom: 30px;
    }

    .page-hero-title {
      font-size: 3.5rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 25px;
    }

    .page-hero-title .highlight {
      background: linear-gradient(135deg, var(--pink), var(--purple), var(--primary));
      background-size: 200% 200%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradientShift 5s ease infinite;
    }

    .page-hero-description {
      font-size: 1.3rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 40px;
    }

    .page-hashtag {
      display: inline-block;
      padding: 15px 35px;
      background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(124, 58, 237, 0.15));
      border: 2px solid rgba(236, 72, 153, 0.4);
      border-radius: 50px;
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--pink);
      letter-spacing: 1px;
      margin-bottom: 20px;
    }

    /* Video Section */
    .video-section {
      padding: 80px 0;
      background: var(--bg-darker);
    }

    .video-wrapper {
      max-width: 900px;
      margin: 0 auto;
    }

    .video-wrapper .video-container {
      margin-bottom: 40px;
    }

    .video-caption {
      text-align: center;
      color: var(--text-muted);
      font-size: 1rem;
    }

    /* Mission Section */
    .mission-section {
      padding: 100px 0;
      position: relative;
    }

    .mission-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 60px;
    }

    .mission-card {
      background: var(--bg-card);
      border: 1px solid var(--glass-border);
      border-radius: 24px;
      padding: 40px;
      text-align: center;
      transition: all 0.4s;
    }

    .mission-card:hover {
      transform: translateY(-10px);
      border-color: var(--pink);
      box-shadow: 0 30px 60px rgba(236, 72, 153, 0.15);
    }

    .mission-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(124, 58, 237, 0.2));
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      color: var(--pink);
      margin: 0 auto 25px;
    }

    .mission-title {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .mission-description {
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* How It Works */
    .how-section {
      padding: 100px 0;
      background: var(--bg-darker);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      margin-top: 60px;
    }

    .step-card {
      text-align: center;
      padding: 30px;
    }

    .step-number {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, var(--pink), var(--purple));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      font-weight: 800;
      color: white;
      margin: 0 auto 25px;
      box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
    }

    .step-title {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .step-description {
      color: var(--text-muted);
      line-height: 1.7;
      font-size: 0.95rem;
    }

    /* Stats Section */
    .kids-stats-section {
      padding: 80px 0;
      background: linear-gradient(135deg, var(--pink), var(--purple));
      position: relative;
    }

    .kids-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }

    .kids-stats-item {
      text-align: center;
      padding: 30px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      backdrop-filter: blur(10px);
    }

    .kids-stats-item i {
      font-size: 40px;
      margin-bottom: 15px;
      display: block;
    }

    .kids-stats-number {
      font-size: 3rem;
      font-weight: 800;
      color: white;
      display: block;
    }

    .kids-stats-label {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.9);
    }

    /* FAQ Section */
    .faq-section {
      padding: 100px 0;
    }

    .faq-grid {
      max-width: 800px;
      margin: 60px auto 0;
    }

    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 30px;
      margin-bottom: 20px;
      cursor: pointer;
      transition: all 0.3s;
    }

    .faq-item:hover {
      border-color: var(--pink);
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.1rem;
      font-weight: 600;
    }

    .faq-question i {
      color: var(--pink);
      transition: transform 0.3s;
    }

    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s;
      color: var(--text-muted);
      line-height: 1.8;
    }

    .faq-item.active .faq-answer {
      max-height: 300px;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid var(--glass-border);
    }

    /* CTA Section */
    .kids-cta {
      padding: 100px 0;
      background: var(--bg-darker);
      text-align: center;
    }

    .kids-cta-content {
      max-width: 700px;
      margin: 0 auto;
    }

    .kids-cta-title {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .kids-cta-description {
      font-size: 1.2rem;
      color: var(--text-muted);
      margin-bottom: 40px;
      line-height: 1.8;
    }

    .kids-cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .btn-kids {
      background: linear-gradient(135deg, var(--pink), var(--purple));
      box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
    }

    .btn-kids:hover {
      box-shadow: 0 15px 40px rgba(236, 72, 153, 0.4);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .mission-grid,
      .kids-stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .steps-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .page-hero-title {
        font-size: 2.5rem;
      }

      .mission-grid,
      .steps-grid,
      .kids-stats-grid {
        grid-template-columns: 1fr;
      }

      .page-hashtag {
        font-size: 1.2rem;
        padding: 12px 25px;
      }

      .kids-cta-buttons {
        flex-direction: column;
        align-items: center;
      }
    }
