.popup {
    display: none; /* Изначально скрываем попап */
    position: absolute; /* Позиционирование относительно кнопки */
    top: 20%;
    right: 70px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 24px 53px 24px 53px;
    z-index: 1000;
}

.popup--visible {
    display: block !important;
}

.popup__nav {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.popup__nav-item:not(:last-child) {
    margin-bottom: 14px;
}

.popup__nav-link {
    color: rgba(0, 49, 60, 1);
    text-decoration: none;
}

.popup__nav-link:hover {
    text-decoration: underline;
}
