.site-header {
    background: #000;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li {
    list-style: none;
}

.main-menu a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: color .3s ease;
}

.main-menu a:hover,
.main-menu .current-menu-item > a {
    color: var(--primary);
}

.site-footer {
    background: #000;
    padding: 50px 0;
    text-align: center;
    margin-top: 80px;
}