<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Desktop Menu - Hidden on Small Screens */
.desktop-menu-container {
    display: none; /* Hidden on mobile */
}

@media (min-width: 768px) {
    /* Show the Desktop Menu */
    .desktop-menu-container {
        display: flex;
        max-width: 1160px; /* Prevents menu from stretching too far */
        width: 100%;
        margin: 0 auto; /* Centers the container */
        justify-content: flex-end; /* Keeps menu items on the right */
    }

    .desktop-nav ul {
        list-style: none;
        display: flex;
        margin: 0;
        padding: 0;
    }

    .desktop-nav ul li {
        margin: 0;
        padding: 0;
    }

    .desktop-nav ul li a {
        text-decoration: none;
        color: white;
        font-size: 1rem;
        padding: 10px 10px;
        transition: color 0.2s ease-in-out;
    }

    .desktop-nav ul li a:hover {
        color: #6F8197; /* Change to your preferred hover color */
    }

    /* Hide Mobile Hamburger on Desktop */
    .menu-text, 
    .mobile-hamburger button {
        display: none;
    }

    /* Full Width Navbar but Contained Menu */
    .mobile-hamburger {
        justify-content: center; /* Centers navbar content */
    }
}
</pre></body></html>