.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 1rem 32px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
}

.nav-logo {
    width: 85px;
    height: 85px;
    object-fit: contain;
    border-radius: 8px;
}

.nav-brand h1 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-brand .tagline {
    color: #7f8c8d;
    font-size: 0.9rem;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
    justify-content: flex-end;
}

.language-selector {
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    background: #ffffff;
    color: #1f2937;
    padding: 0.3rem 0.75rem;
    font-size: 0.88rem;
    font-weight: 600;
}

.language-selector:focus {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 1rem 20px;
    }

    .nav-logo {
        width: 48px;
        height: 48px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background: #fff;
        width: 100%;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 1rem 0;
        z-index: 999;
    }
    .nav-links.active {
        display: flex;
    }

    .language-selector {
        width: 90%;
        max-width: 260px;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 18px;
        z-index: 1001;
    }
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}









