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

#popup-box {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    max-width: 600px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    text-align: center;
}

#popup-box h2 {
    margin-top: 0;
    font-size: 24px;
    font-weight: bold;
    color: #001e3c;
}

#popup-box p {
    font-size: 15px;
    line-height: 1.4em;
}

#popup-close {
    border: none;
    border-radius: 5px;
    background: #C5B9AA;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    padding: 6px 14px;
    font-weight: 700;
    transition: 0.2s ease;
    text-align: center;
}
#popup-close:hover {
    background: #B4A9C4;
}
#popup-box img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}
