/* Language Switcher Styles */
.language-switcher {
    display: inline-block;
    margin-left: 20px;
}

.language-switcher a {
    display: inline-block;
    padding: 5px 12px;
    margin: 0 3px;
    background: #F69C00;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.language-switcher a:hover {
    background: #51B7E3;
    transform: translateY(-2px);
}

.language-switcher a.active {
    background: #012C3C;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .language-switcher {
        margin: 10px 0;
        text-align: center;
    }
}
