.navbar {
    background: #fff;
    position: relative;
    margin-top: 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

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

.logo img {
  height: 70px;
}

/* Бургер */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #000;
    display: block;
}

/* 📱 Адаптив */
@media (max-width: 768px) {

    .burger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 45px;
        right: 0;
        background: #fff;
        flex-direction: column;
        width: 50%;
        align-items: center;
        display: none;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 100;
    }

    .nav-links.active {
        display: flex;
    }
}