.navbar {
    background-color: var(--primary);
    color: white;
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 0;
    text-decoration: none;
    color: white;
}

.navbar-brand:hover {
    color: white;
    text-decoration: none;
}

.icon {
    width: 2rem;
    height: 2rem;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: bold;
}

.navbar-links {
    display: flex;
    gap: 2rem;
    margin-right: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-lightest);
}