.fs-6 {
    font-size: 1.2rem !important;
        font-weight: 800;
}

/* Language Switcher Styles */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 15px;
}

.language-switcher .btn {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #007bff;
    background: transparent;
    color: #007bff;
    min-width: 45px;
    text-align: center;
}

.language-switcher .btn:hover {
    background: #007bff;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.language-switcher .btn.active {
    background: #007bff;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}

.language-switcher .separator {
    color: #dee2e6;
    font-weight: 300;
}

@media (max-width: 768px) {
    .language-switcher {
        margin: 0 10px;
        gap: 6px;
    }
    
    .language-switcher .btn {
        padding: 4px 8px;
        font-size: 12px;
        min-width: 35px;
    }
}