.white-popup {
    background: #ffffff;
    padding: 30px 40px;
    max-width: 600px;
    margin: 40px auto;
    position: relative;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    font-family: "Segoe UI", Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
    animation: popup-fadein 0.3s ease-in-out;
    font-size: 18px;
    opacity: 0.8;
    text-align: justify;
}

/* Optional: Fancy heading */
.white-popup h2 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 600;
    color: #111;
    text-align: center;
}

/* Optional: Close button styling override */
.mfp-close {
    color: #666;
    font-size: 28px;
    right: 12px;
    top: 12px;
    text-shadow: none;
    opacity: 0.8;
}

/* Smooth animation */
@keyframes popup-fadein {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Optional responsive tweak */
@media (max-width: 767px) {
    .white-popup {
        padding: 20px;
        width: 90%;
    }
}