/* Header Unified Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.brand {
    font-size: 18px;
    font-weight: 700;
    color: #0084BD;
    line-height: 1;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    line-height: 1;
    display: block;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #0084BD;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        height: 60px;
    }

    .brand {
        font-size: 14px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 11px;
    }
}
