:root {
  --header-offset: 88px;
}

body.has-fixed-header {
  padding-top: var(--header-offset);
}

body.has-fixed-header [id] {
  scroll-margin-top: var(--header-offset);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-image {
  height: 42px;
  width: auto;
  display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4A90E2;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}
