        body {
            font-family: "PT Sans", sans-serif;
            background-color: #FFFFFF;
            color: #170C79;
            overflow-x: hidden;
        }

        /* Nav Underline Mechanics */
        .nav-link {
            position: relative;
            color:blue;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 2px;
            bottom: -6px;
            left: 0;
            background-color: #170C79;
            transform-origin: bottom right;
            transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .nav-link:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }
        .nav-link-white::after {
            background-color: #FFFFFF;
        }

        /* Custom Premium Scrollbar Layout */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #FFFFFF;
        }
        ::-webkit-scrollbar-thumb {
            background: #170C79;
        }

        /* SPA Layout Core Visibility Layers */
        .spa-section {
            display: none;
        }
        .spa-section.active-route {
            display: block;
        }

        /* Clean Scroll Entrance Reveal Baseline Classes */
        .reveal-visible {
            opacity: 1 !important;
            transform: none !important;
        }
