.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    display: none;
}

.popup-content {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.popup-content p{
    line-height: 1.5;
}

.popup-content h2 {
    padding-bottom: 30px;
    font-size: 35px;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}
