body {
    font-family: Poppins, Arial, sans-serif;
}

/* BACKDROP */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.30);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* POPUP BOX */
.popup {
    width: 800px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    position: relative;
}

/* CLOSE BUTTON */
.popup .close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,.4);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    text-align: center;
    line-height: 48px;
    cursor: pointer;
    font-weight: bold;
    font-size: 32px;
}

/* IMAGE HEADER */
.popup img {
    width: 100%;
    display: block;
}

/* CONTENT */
.popup-content {
    padding: 20px 30px;
}

.popup-content ol {
    font-size: 14px;
    color: #444;
    padding-left: 20px;
}

.popup-content li {
    margin-bottom: 8px;
}

 
.popup-overlay {
    pointer-events: auto;
}

