/* Header Styles */
.site-header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    flex: 0 0 auto;
    order: 2;
}

.header-logo-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
}

.header-nav {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
}

.header-nav-left {
    justify-content: flex-start;
    order: 1;
}

.header-nav-right {
    justify-content: flex-end;
    order: 3;
}

.header-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.header-menu li {
    margin: 0;
}

.header-menu a {
    font-size: 1rem;
    font-weight: 300;
    color: #333;
    text-decoration: none;
    transition: opacity 0.3s ease;
    letter-spacing: 0.05em;
}

.header-menu a:hover {
    opacity: 0.7;
}

