        :root {
            --dark-accent: #3B4953;
            --gold: #F4991A;
            --pink: #F5BABB;
            --bg-white: #FFFFFF;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--bg-white);
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        /* Transition for multi-page simulation */
        #page-content {
            transition: opacity 0.4s ease-in-out;
        }

        /* Layout Dividers & Shapes */
        .vertical-divider {
            position: absolute;
            left: 0;
            top: 0;
            width: 12px;
            height: 100%;
            background-color: var(--dark-accent);
            z-index: 20;
        }

        .hero-circle {
            position: absolute;
            top: -10%;
            right: -10%;
            width: 40vw;
            height: 40vw;
            background-color: var(--pink);
            border-radius: 50%;
            z-index: 5;
            opacity: 0.8;
        }

        .hero-polygon {
            position: absolute;
            bottom: -5%;
            left: -5%;
            width: 50%;
            height: 40%;
            background-color: var(--gold);
            clip-path: polygon(0 15%, 100% 0, 85% 100%, 0 85%);
            z-index: 15;
            transform: rotate(-3deg);
        }

        /* Hero Animation */
        .hero-bg-anim {
            background-size: cover;
            background-position: center;
            animation: zoomEffect 20s infinite alternate;
        }

        @keyframes zoomEffect {
            from { transform: scale(1); }
            to { transform: scale(1.1); }
        }

        /* Nav Effects */
        .nav-link {
            position: relative;
            color:pink;
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            font-weight: 700;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: 0.3s;
        }
        .nav-link:hover::after { width: 100%; }

        /* FAQ Accordion */
        .faq-item {
            border-bottom: 1px solid #eee;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding-bottom: 2rem;
        }

        /* Course Cards */
        .course-card {
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { background: var(--dark-accent); border-radius: 10px; }

        /* Modal Blur */
        .modal-overlay {
            backdrop-filter: blur(8px);
            background: rgba(0,0,0,0.85);
        }
    