 .header {
    background-color: var(--color-white);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 30px; 
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text span:first-child {
    color: var(--color-dark-blue);
}

.logo-text span:last-child {
    color: var(--color-light-blue);
}


.nav-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 0; 
}

.nav-links li a {
    font-weight: 600;
    color: var(--color-heavy-gray);
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--color-orange);
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-links {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
}
