        body {
            font-family: 'EB Garamond', serif;
            background-color: #FFFFFF;
            color: #061E29;
            line-height: 1.6;
        }

        /* Boxed Navigation System */
        .nav-box {
            background: white;
            border: 1px solid #e5e7eb;
            padding: 0.5rem 1.25rem;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: 500;
            white-space: nowrap;
        }
        .nav-box:hover {
            background: #f9fafb;
            border-color: #061E29;
            transform: translateY(-1px);
        }

        /* Hero Animation */
        @keyframes subtleZoom {
            from { transform: scale(1); }
            to { transform: scale(1.05); }
        }
        .hero-bg {
            animation: subtleZoom 20s infinite alternate ease-in-out;
        }

        /* Section Transitions */
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease-out;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Dashboard Elements */
        .stat-card {
            border-left: 1px solid rgba(255,255,255,0.1);
            padding: 2rem;
            text-align: center;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: #FFFFFF; }
        ::-webkit-scrollbar-thumb { background: #061E29; }

        /* Modal Blur */
        .modal-blur {
            backdrop-filter: blur(8px);
            background: rgba(6, 30, 41, 0.8);
        }

        /* Hamburger Menu */
        #mobile-nav {
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
    