.privacy-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    position: relative;
    color: rgb(34, 32, 32);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    max-height: 80vh; /* Висота попапу обмежена 80% від висоти екрана */
    overflow: hidden; /* Забороняє прокручування вмісту за межами попапа */
}

.popup-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.popup-text {
    font-size: 16px;
    margin-bottom: 20px;
    max-height: 60vh; /* Максимальна висота для прокручування тексту */
    overflow-y: auto; /* Додає вертикальну прокрутку */
}

.popup-footer {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.popup-footer button {
    padding: 10px 20px;
    background-color: #0066cc;
    color: white;
    border: none;
    margin-bottom: 12px;
    border-radius: 5px;
    cursor: pointer;
}

.popup-footer button:hover {
    background-color: #0057b8;
}

.close-popup-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

.close-popup-btn:hover {
    color: #f00;  /* Червоний колір при наведенні */
}

@media (max-width: 768px) {
    .popup-content {
        width: 90%;
    }
}
