/* The Background Overlay */
.modal-overlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dimmed background */
    backdrop-filter: blur(10px); /* The Blur Effect */
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* The Privacy Window */
.modal-window {
    background: white;
    width: 100%;
    max-width: 600px;
    max-height: 80vh;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.close-privacy {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f5f5f7;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

/* Typography for Privacy Content */
.privacy-container h2 { font-size: 24px; margin-bottom: 15px; }
.privacy-container h3 { font-size: 18px; margin-top: 20px; margin-bottom: 10px; }
.privacy-container p, .privacy-container li { font-size: 15px; line-height: 1.6; color: #444; }