header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
    flex-wrap: wrap;
}

.navbar img {
    width: 120px;
    height: auto;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #222831;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    border-bottom: 2px solid #0057A0;
    color: #0057A0;
}


.slogan {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.8rem 1rem;
    background-color: #ffffff;
    color: #0057A0;
    border-top: transparent #ffffff;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-actions {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    }

    .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
    margin-top: 1rem;
    }

    .nav-links.active {
    display: flex;
    }

    .menu-toggle {
    display: block;
    }

    .lang-switch {
    margin-top: 1rem;
    }
}

#navLinks a.active {
    border-bottom: 2px solid #0057A0;
    color: #0057A0;
}