        /* ============================================
           GCEA HERO SECTION — Apple-Grade Design
           Corporate Color: #0D92F4
           ============================================ */

         /* Apple-inspired typography and spacing */
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            margin: 0;
            padding: 0;
        }

        .hero-section {
            background-color: #0D92F4;
            min-height: 600px;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 80px 20px;
        }

        .hero-image-container {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            /* padding: 60px 0; */
        }

        .hero-image-wrapper {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .hero-image-wrapper img {
            width: 100%;
            height: auto;
            max-height: 540px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        .hero-tagline {
            font-size: 1.25rem;
            font-weight: 400;
            color: #ffffff;
            margin-bottom: 40px;
            max-width: 600px;
            line-height: 1.5;
            opacity: 0.95;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn-hero {
            padding: 14px 32px;
            font-size: 1rem;
            font-weight: 500;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            letter-spacing: 0.01em;
        }

        .btn-primary-hero {
            background-color: #ffffff;
            color: #0D92F4;
        }

        .btn-primary-hero:hover {
            background-color: #f5f5f7;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .btn-secondary-hero {
            background-color: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
        }

        .btn-secondary-hero:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        /* Eyebrow Badge */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.14);
            border: 1px solid rgba(255, 255, 255, 0.22);
            border-radius: 100px;
            padding: 7px 18px;
            margin-bottom: 28px;
            font-size: 0.73rem;
            font-weight: 600;
            color: var(--gcea-white);
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .hero-badge-dot {
            width: 7px;
            height: 7px;
            background: #34D399;
            border-radius: 50%;
            flex-shrink: 0;
            animation: pulse-dot 2s ease-in-out infinite;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-section {
                min-height: 600px;
            }

            .hero-text {
                padding: 40px 20px;
            }

            .hero-image-container {
                padding: 40px 0;
            }

            .hero-image-wrapper img {
                max-height: 300px;
            }

            .hero-title {
                font-size: 2.75rem;
            }

            .hero-tagline {
                font-size: 1.125rem;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2.25rem;
            }

            .hero-tagline {
                font-size: 1rem;
                margin-bottom: 32px;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn-hero {
                width: 100%;
                padding: 16px 32px;
            }

            .hero-text {
                padding: 30px 20px;
            }
        }