/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 1.2rem;
}

.navbar-brand img {
    height: 32px;
    width: auto;
    object-fit: contain;
    margin-right: 10px;
}

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

.navbar-link {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s ease;
    font-size: 1rem;
}

.navbar-link:hover {
    color: #60338f;
    /* Matching the purple from terms page */
}

.navbar-link.active {
    color: #60338f;
    font-weight: 600;
}

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

    .navbar-links {
        gap: 1rem;
    }

    .navbar-link {
        font-size: 0.9rem;
    }
}