        .container-4 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero-section {
            background: linear-gradient(135deg, #F6BC2F 0%, #E8A91C 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 30px 0;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
            align-items: center;
            width: 100%;
        }

        .hero-left {
            color: white;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-transform: capitalize;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .logo-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 30px;
        }

        .logo-row {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .logo-image {
            max-width: 150px;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .child-image {
            max-width: 120px;
            height: auto;
        }

        .hero-right {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }

        .main-image {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .content-section {
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            color: white;
            margin-top: 20px;
        }

        .content-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .content-text strong {
            color: #FFE066;
        }

        .cta-button {
            background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255,107,107,0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255,107,107,0.4);
            background: linear-gradient(45deg, #FF5252, #FF7979);
        }

        .floating-animation {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .logo-row {
                justify-content: center;
            }

            .content-section {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.8rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .logo-image {
                max-width: 120px;
            }

            .child-image {
                max-width: 100px;
            }
        }