/* Apollo Shared Header Styles */
.apollo-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'TestSohne', 'Instrument Sans', sans-serif;
}

.apollo-header-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
    gap: 0;
}

.apollo-header-logo img {
    width: 50px;
    height: auto;
    margin-bottom: -8px;
}

.apollo-header-logo span {
    font-family: 'TestSohne', 'Sofia Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -1px;
    line-height: 1;
}

.apollo-header-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.apollo-header-nav a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.apollo-header-nav a:hover {
    color: #666;
}

.apollo-header-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.apollo-header-icons a {
    display: flex;
    align-items: center;
}

.apollo-header-icons img {
    width: 22px;
    height: 22px;
}

/* Responsive */
@media (max-width: 768px) {
    .apollo-header-nav {
        display: none;
    }
}