.header {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 80px;
    color: white;
    position: fixed;
    background-color: transparent;
    box-shadow: none;
}

.header:hover {
    background-color: #026bbc;
}

.headerDark {
    background-color: #026bbc !important;
}

.header li:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.header .selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.header li a {
    width: 100%;
    height: 80px;
    color: white;
    text-decoration: none;
    display: inline-block;
    line-height: 80px;
    padding: 0 10px;
}

.navbar-brand {
    width: auto;
    height: 60px;
}

.headerTel {
    font-size: 20px;
    text-align: right;
    padding-right: 10px;
    cursor: pointer;
}

.navbar-toggler {
    margin-right: 10px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    color: white;
}

.lang-btn {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 4px 12px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background-color: white;
    color: #026bbc;
}

.language-switcher span {
    color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 650px) {
    .header ul {
        background-color: #026bbc;
    }

    .language-switcher {
        padding: 10px 15px;
        justify-content: center;
    }
}