.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3vw 1rem 3vw;
    min-height: 33px;
    background: #eef2fe;
    border-bottom: 1px solid #eef2fe;
    color: #452d9f;
}
.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #452d9f;
    text-decoration: none;
}
.logo a {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #452d9f;
    text-decoration: none;
}
.nav-btns a {
    margin-left: 0.7rem;
    padding: 0.4rem 1.1rem;
    border-radius: 0.7rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    background: transparent;
    color: #452d9f;
    transition: background 0.2s, color 0.2s;
    border: none;
}
.nav-btns a:hover {
    background: white;
    color: #452d9f;
}
@media (max-width: 700px) {
    .navbar { flex-direction: column; gap: 1rem; }
} 