/* Стили для попапа */
.custom-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.custom-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    padding: 30px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.7);
    transition: all 0.3s ease;
}

.custom-popup.show .popup-content {
    transform: scale(1);
}

.popup-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.popup-title {
    color: #114878;
    font-size: 24px;
    margin-bottom: 10px;
}

.popup-text {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.popup-button {
    background: #114878;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.popup-button:hover {
    background: #0d3a5c;
}