
        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Header Styles */
        header {
            background-color: #fff;
            padding: 0px 30px;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 100;
            transition: all 0.3s ease;
            box-shadow: transparent;
        }

        .header-limiter {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: transparent;
        }

        /* Logo */
        .header-limiter h1 a img {
            height: 90px; /* Adjusted for a modern, compact logo size */
            display: block;
            box-shadow: transparent;
        }

        /* Navigation Menu */
        nav {
            display: flex;
            gap: 20px;
            box-shadow: transparent;
        }

        nav a {
            color: #333;
            font-weight: 600;
            padding: 10px 15px;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: #3353b2; /* Hover effect with modern color */
            box-shadow: transparent;
        }
        
        nav .selected {
            color: #fdfdfd; /* Active menu item color */
            box-shadow:inset; 
        }

        /* Fixed header styling when scrolled */
        body.fixed header {
            background-color: #ffffff;
            color: white;
            
        }

        body.fixed header nav a {
            color: black;
        }

        body.fixed header nav a:hover {
            color: #ffcc00;
        }

        /* Mobile Responsive */
        @media (max-width: 608px) {
            nav {
                display: none; /* Hide navigation by default on small screens */
                flex-direction: column;
            }

            nav.active {
                display: flex; /* Show navigation on mobile when active */
                position: absolute;
                top: 60px;
                right: 30px;
                background-color: #fff;
                padding: 15px;
                border-radius: 5px;
            }

            .menu-toggle {
                display: block;
                font-size: 24px;
                cursor: pointer;
            }
        }
        

        @media (min-width: 609px) {
            .menu-toggle {
                display: none;
            }
        }

