.lang-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 20px;
}

.lang-switcher a {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.lang-switcher a.active,
.lang-switcher a:hover {
    opacity: 1;
}