/* Privacy Policy Modal Styles */
.privacy-policy-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.privacy-policy-body {
    position: relative;
    background-color: #fff;
    width: 50%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.privacy-policy-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
}

.privacy-policy-close:hover {
    color: #333;
}

.privacy-policy-body h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.privacy-policy-footer {
    margin-top: 20px;
    text-align: center;
}

.privacy-policy-footer button {
    background-color: #53d56c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s;
}

.privacy-policy-footer button:hover {
    background-color: #53d56c;
}

.privacy-policy-content {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.privacy-policy-content p {
    margin-bottom: 15px;
}

.privacy-policy-content ul {
    margin-bottom: 15px;
    padding-left: 30px;
}

.privacy-policy-content ul li {
    margin-bottom: 8px;
}

.company-info {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    border-left: 3px solid #FF5300;
}

.company-info p {
    margin: 5px 0;
}

.privacy-policy-content a {
    color: #FF5300;
    text-decoration: none;
}

.privacy-policy-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-policy-body{
        width: 90%;
    }
}