

        /* Navigation */
        .navbar {
            background: var(--white);
            box-shadow: 0 2px 20px rgba(30, 58, 138, 0.08);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-family: 'EB Garamond', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--navy-blue);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
		.nav-links li {
            
			  
			
        }
		
		
		.nav-links li:hover {
            
			
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
            font-size: 0.9rem;
			padding: 0.5rem 1rem;
			  border-radius: 20px;
			  font-size: 0.9rem;
			  font-weight: 600;
			  display: inline-block;
			  margin-bottom: 1rem;
        }
		
		.nav-selected{
			background: var(--navy-blue);
			color: white;
			color: white;
		}

        .nav-links a:hover {
			background: var(--navy-blue);
			color: white;
			color: white;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: var(--navy-blue);
            margin: 3px 0;
            transition: 0.3s;
        }