header {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 2rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}
 
header h1 {
    margin: 0;
    padding: 0;
}

header h1 a {
    font-size: 2rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #081d30;

    img {
        width: 5rem;
        height: auto;
    }
}

header > nav > ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

header > nav > ul > li {
    list-style: none;
}

header > nav > ul > li > a {
    text-decoration: none;
    color: #081d30;
    font-weight: bold;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-left: 1px solid #dee2e6;
    padding-left: 1rem;
    margin-left: 1rem;
}

.language-switcher span {
    font-size: 0.9rem;
    color: #6c757d;
}

.lang-link {
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.lang-link:hover {
    background-color: #e9ecef;
}

.lang-link.active {
    background-color: #659cef;
    color: white !important;
    font-weight: bold;
}