@font-face {
            font-family: 'Gotham';
            src: url('/fonts/Gotham-Book.woff2') format('woff2');
            font-weight: 400;
            font-style: normal;
        }

        @font-face {
            font-family: 'Gotham';
            src: url('/fonts/Gotham-Medium.woff2') format('woff2');
            font-weight: 500;
            font-style: normal;
        }

        @font-face {
            font-family: 'Gotham';
            src: url('/fonts/Gotham-Black.woff2') format('woff2');
            font-weight: 900;
            font-style: normal;
        }

        body {
            font-family: 'Gotham', sans-serif;
            color: #000000;
        }

        /* HERO */
        .hero {
            position: relative;
            overflow: hidden;
            padding-top: 120px;
            padding-bottom: 80px;
        }

        @media(min-width:768px) {
            .hero {
                min-height: 87vh;
            }
        }

        /* BG */
        .hero-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Fog */
        .hero-fog {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 5%, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0.55) 30%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.15) 45%, rgba(255, 255, 255, 0.06) 57%, transparent 100%);
        }

        /* Bottom fade */
        /* Container */
        .hero-container {
            position: relative;
            max-width: 1280px;
            margin: auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
        }

        @media(min-width:768px) {
            .hero-container {
                grid-template-columns: 380px 1fr;
                padding: 0 40px;
            }
        }

        /* ========================= */
        /* HERO IMAGE (CLEAN FIX)   */
        /* ========================= */

        .hero-left {
            display: flex;
            justify-content: center;
        }

        .hero-left .relative {
            position: relative;
            width: 280px;
        }

        /* ========================= */
        /* MOBILE CLEAN VERSION      */
        /* ========================= */

        .hero-shape {
            width: 180px;
            display: block;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-student {
            position: absolute;
            left: 50%;
            top: -20%;
            transform: translateX(-50%);
            width: 240px;
            z-index: 2;
            filter: drop-shadow(0 25px 40px rgba(0, 0, 0, .25));
        }

        /* ========================= */
        /* TABLET                    */
        /* ========================= */
        @media(min-width:768px) {

            .hero-left {
                justify-content: flex-start;
            }

            .hero-left .relative {
                width: 450px;
            }

            .hero-shape {
                width: 140px;
            }

            .hero-student {
                left: 15%;
                top: -10%;
                transform: translate(-80px, -50px);
                width: 400px;
            }
        }

        /* ========================= */
        /* DESKTOP                   */
        /* ========================= */
        @media(min-width:1024px) {

            .hero-left .relative {
                width: 500px;
            }

            .hero-shape {
                width: 290px;
                top: -20px;
                left: 3px;
            }

            .hero-student {
                transform: translate(-100px, -60px);
                width: 420px;
                left: 25%;
                top: -10%;
            }
        }

        /* ========================= */
        /* HERO TEXT (REFINED)       */
        /* ========================= */

        .hero-title {
            font-size: 25px;
            line-height: 1.15;
            font-weight: 800;
            color: #116614;
            letter-spacing: -0.5px;
        }

        /* ========================= */
        /* HERO TITLE MOBILE CENTER  */
        /* ========================= */

        @media(max-width:767px) {

            .hero-title,
            .hero-subtitle {
                text-align: center;
            }

            .hero-button {
                display: block;
                margin: 20px auto 0 auto;
            }
        }

        .hero-subtitle {
            font-size: 17px;
            font-weight: 500;
            color: #333333;
            margin-top: 12px;
        }

        /* Tablet */
        @media(min-width:768px) {
            .hero-title {
                font-size: 40px;
            }

            .hero-subtitle {
                font-size: 20px;
            }
        }

        /* Desktop */
        @media(min-width:1024px) {
            .hero-title {
                font-size: 48px;
                line-height: 1.1;
            }

            .hero-subtitle {
                font-size: 24px;
            }
        }


        /* ========================= */
        /* HERO BUTTON (PREMIUM)     */
        /* ========================= */

        .hero-button {
            background: #009B4C;
            color: white;
            font-size: 15px;
            font-weight: 600;
            padding: 14px 40px;
            border-radius: 9999px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
            transition: all .3s ease;
        }

        .hero-button:hover {
            background: #0d7a3c;
            transform: translateY(-3px);
            box-shadow: 0 18px 35px rgba(0, 0, 0, .25);
        }

        .card-hover {
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-hover:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}
