/* Privacy Policy Overlay Styles */
.privacy-policy-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
}

.privacy-policy-content {
    position: relative;
    background-color: #fff;
    margin: 50px auto;
    padding: 30px;
    width: 80%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-height: 80vh;
    overflow-y: auto;
}

.privacy-policy-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.privacy-policy-content h1 {
    margin-top: 0;
    color: #333;
    font-size: 24px;
}

.privacy-policy-content h2 {
    color: #555;
    font-size: 20px;
    margin-top: 20px;
}

.privacy-policy-content p, 
.privacy-policy-content ul {
    color: #666;
    line-height: 1.6;
}

.privacy-policy-content ul {
    padding-left: 20px;
}

@media (max-width: 768px) {
    .privacy-policy-content {
        width: 90%;
        margin: 30px auto;
        padding: 20px;
    }
}
