        :root {
            --bg-primary: #ECE852;
            --bg-footer: #F3FF90;
            --text-black: #000000;
        }

        body {
            font-family: "Encode Sans SC", sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-black);
            overflow-x: hidden;
            scroll-behavior: smooth;
            font-size: 14px; /* Smaller base font */
        }

        /* Typography */
        h1, h2, h3 { line-height: 0.95; letter-spacing: -0.04em; }
        p { font-weight: 400; line-height: 1.7; opacity: 0.85; }
        .nav-spacing { letter-spacing: 0.2em; }

        /* Animation Classes */
        .reveal { opacity: 0; transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
        .reveal-left { transform: translateX(-60px); }
        .reveal-right { transform: translateX(60px); }
        .reveal-top { transform: translateY(-60px); }
        .reveal-bottom { transform: translateY(60px); }
        .reveal.active { opacity: 1; transform: translate(0, 0); }

        /* Navigation Circle */
        .menu-btn {
            width: 80px;
            height: 80px;
            border: 2px solid var(--text-black);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: fixed;
            top: 40px;
            right: 6%;
            z-index: 1000;
            background: var(--bg-primary);
            transition: transform 0.3s ease;
        }
        .menu-btn:hover { transform: scale(1.1); background: #000; color: var(--bg-primary); }

        /* Navigation Overlay */
        #nav-overlay {
            position: fixed;
            inset: 0;
            background: var(--bg-primary);
            z-index: 999;
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        /* Hero Image - High Profile, No Shadow */
        .hero-img-tall {
            height: 80vh;
            width: 100%;
            object-fit: cover;
            margin-bottom: 20%;
            margin-left: 20%;
            border: 1px solid black;
        }

        /* Section Layouts */
        .site-padding { padding-left: 6%; padding-right: 6%; }
        
        .btn-modern {
            border: 1px solid black;
            padding: 12px 28px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: 0.3s;
        }
        .btn-modern:hover { background: black; color: var(--bg-primary); }

        .program-card {
            background: white;
            padding: 40px;
            border: 1px solid black;
            height: 100%;
            transition: 0.4s;
        }
        .program-card:hover { transform: translateY(-10px); }

        /* Modal / Quick View */
        .modal-view {
            display: none;
            position: fixed;
            inset: 0;
            background: white;
            z-index: 1001;
            padding: 5%;
            overflow-y: auto;
        }

        .diagonal-line {
            height: 1px;
            background: black;
            width: 100%;
            transform: rotate(-2deg);
            margin: 4rem 0;
                }