.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #35374B;
    border-bottom: 1px solid #35374B;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav a {
    text-decoration: none;
    color: #F6F6F6;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle .icon {
    font-size: 1.5rem;
    pointer-events: none;
    color:#F6F6F6
}

.nav-toggle:focus {
    outline: 2px solid black;
}

/* Responsive */
@media (max-width: 768px) {
    .nav ul {
        display: none;
        flex-direction: column;
        background: #35374B;
        position: absolute;
        top: 60px;
        right: 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        width: 100%;
        font-size: 1.5rem;
        text-align: center;
        padding: 20px;
    }

    .nav ul.open {
        display: flex;
        gap: 20px
    }

    .nav-toggle {
        display: block;
        height: 31px;
    }
}