/* Header Section */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #004080;
    padding: 15px;
    color: white;
}

.header-logo h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.header-logo h3 a {
    color: white;
    text-decoration: none;
}

.header-nav {
    display: flex;
}

.custom-nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 0px 36px;
    background: white;
    /*box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);*/
    border-bottom: 1px solid lightgray;
}

.sm-menu {
    display: block;
    border: none;
   color: white;
   /* padding: 4px 10px; */
    border-radius: 4px;
    cursor: pointer;
}

.sm-menu:hover {
    color: var(--button-hover-color);
}

.nav-logo {
    width: 35%;
}

/*
.nav-links {
    flex-grow: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.nav-links li {
    font-size: 13px;
    padding: 0 12px;
    font-weight: 300;
    list-style: none;
    color: #28282B;
}
*/

.nav-links {
    list-style: none;
    display: none;
}

.nav-links li {
    margin-right: 20px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #ffcc00;
}

.active {
    font-weight: bold;
}



.content-nav-container {
    display: block;
}

.content-nav {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding: 2px 15px;
    background: #f5f5dc;
    color: var(--base-heading);
    font-weight: bold;
}

.content-nav span {
    cursor: pointer;
}

.content-list {
    position: absolute;
    width: 100%;
    background: white;
    padding: 0 10px;
    font-weight: 500;
    display: none;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .header-logo h3 {
        font-size: inherit;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .nav-logo {
        width: 25%;
    }

    .header-logo h3 {
        font-size: inherit;
    }

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .nav-logo {
        width: 20%;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .nav-logo {
        width: 12%;
    }

    .nav-links {
        display: flex;
    }

    .sm-menu, .content-nav-container {
        display: none;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) 
@media only screen and (min-width: 1200px) {
    
}
*/