.popup-content {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    max-width: 600px;
    margin: 0 auto;
    max-height: 90vh;
    overflow-y: auto;
}

.popup-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.popup-descr {
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
    font-family: 'Arial', sans-serif;
    max-height: 400px;
    overflow-y: auto;
}

.popup-descr a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.popup-descr a:hover {
    text-decoration: underline;
}

.popup-descr strong {
    color: #333;
    font-weight: bold;
}

.contacts {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #007bff;
}

.popup-close {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.popup-close:hover {
    background: #0056b3;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.popup-overlay.show {
    display: flex;
}