/* Container Overlay */
.closure-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 4, 70, 0.8);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    font-family: 'OpenSansHebrew', sans-serif;
    direction: rtl;
}

/* Modal Content Box */
.closure-modal-box {
    background: #fff;
    width: 655px;
    height: 435px;
    border-radius: 32px;
    border: 2px solid #FF007F;
    position: relative;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    box-sizing: border-box; /* מבטיח שהפדינג לא יגדיל את הדיב */
}

/* Close Button (X) */
.closure-modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    cursor: pointer;
    background: #f0f0f0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #95989A;
    font-size: 20px;
    transition: background 0.2s;
}

    .closure-modal-close:hover {
        background: #e0e0e0;
    }

/* Typography */
.closure-modal-box h2 {
    color: #090446;
    margin-top: 89px;
    font-family: 'OpenSansBold';
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.3;
}

.closure-modal-box p,
.closure-modal-box h3 {
    color: #5A586D;
    font-family: 'OpenSansHebrew';
    font-size: 20px;
   
}

.closure-modal-box h3 {
    font-weight: normal;
    margin-bottom:unset;
}

.closure-modal-info-section {
    margin: 30px 0;
}

.closure-modal-footer {
    color: #5A586D;
    font-family: 'OpenSansBold'!important;
    font-size: 20px;
    margin-top: 30px;
}

/* Mobile Adjustments (Optional) */
@media (max-width: 700px) {
    .closure-modal-box {
        width: 90%;
        height: auto;
        padding-bottom: 40px;
    }

        .closure-modal-box h2 {
            margin-top: 50px;
            font-size: 20px;
        }
}
