

.kids-hero {
            background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(30, 30, 30, 0.92) 100%);
            padding: 100px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .kids-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(255, 94, 0, 0.1) 0%, transparent 50%);
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--neon);
            margin-bottom: 20px;
            text-shadow: 0 0 20px rgba(255, 94, 0, 0.5);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: #cfcfcf;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .hero-features {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .hero-feature {
            background: rgba(255, 94, 0, 0.15);
            color: var(--neon);
            padding: 12px 25px;
            border-radius: 20px;
            border: 1px solid rgba(255, 94, 0, 0.3);
            backdrop-filter: blur(10px);
            font-weight: 600;
        }

        .kids-about {
            padding: 80px 20px;
            background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(25, 25, 25, 0.98) 100%);
        }

        .about-container h2 {
            color: var(--ink);
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .about-card {
            background: rgba(17, 17, 17, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .about-card:hover {
            transform: translateY(-5px);
            border-color: var(--neon);
            box-shadow: 0 10px 30px rgba(255, 94, 0, 0.2);
        }

        .about-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .about-card h3 {
            color: var(--neon);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .about-card p {
            color: #cfcfcf;
            line-height: 1.6;
        }

        .kids-benefits {
            padding: 80px 20px;
            background: rgba(15, 15, 15, 0.95);
        }

        .benefits-container h2 {
            color: var(--ink);
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .benefit {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px;
            background: rgba(17, 17, 17, 0.6);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .benefit-icon {
            font-size: 2.5rem;
            flex-shrink: 0;
        }

        .benefit-content h3 {
            color: var(--neon);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .benefit-content p {
            color: #cfcfcf;
            line-height: 1.6;
        }

        .kids-stages {
            padding: 80px 20px;
            background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(25, 25, 25, 0.98) 100%);
        }

        .stages-container h2 {
            color: var(--ink);
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
        }

        .stages-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .stage {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-bottom: 25px;
            padding: 25px;
            background: rgba(17, 17, 17, 0.7);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
        }

        .stage:hover {
            border-color: var(--neon);
            transform: translateX(5px);
        }

        .stage-number {
            width: 50px;
            height: 50px;
            background: var(--neon);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: bold;
            flex-shrink: 0;
        }

        .stage-content h3 {
            color: var(--neon);
            margin-bottom: 8px;
            font-size: 1.2rem;
        }

        .stage-content p {
            color: #cfcfcf;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-features {
                flex-direction: column;
                align-items: center;
            }
            
            .stage {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .benefit {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
            
            .about-grid {
                grid-template-columns: 1fr;
            }
        }