/* Privacy Modal Styles */
.Mail {
    color: #006bb7;
    text-decoration: underline;
    display: block;
}
.privacy-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.privacy-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 700px;
    max-height: 85vh;
    width: 90%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.privacy-modal-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacy-modal-header h2 {
    margin: 0;
    font-size: 1.75rem;
    color: #333;
    font-weight: 600;
}

.privacy-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
}

.privacy-modal-close:hover {
    background-color: #f5f5f5;
    color: #333;
}

.privacy-modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

    .privacy-modal-body h3 {
        font-size: 1.2rem;
        margin-top: 0;
        margin-bottom: 12px;
        color: #333;
        font-weight: 600;
    }

    .privacy-modal-body h4 {
        font-size: 1.1rem;
        margin-top: 20px;
        margin-bottom: 10px;
        color: #0066cc;
        font-weight: 600;
    }

.privacy-modal-body p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
}

.privacy-modal-body ul {
    margin-left: 20px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.privacy-modal-body ul li {
    color: #555;
    margin-bottom: 8px;
}

.privacy-contact {
    background-color: #f0f7ff;
    padding: 12px 16px;
    border-radius: 6px;
    margin-top: 16px;
    border-left: 4px solid #0066cc;
}

.privacy-updated {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-top: 20px;
    text-align: right;
}

.privacy-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.privacy-modal-footer .btn {
    padding: 10px 24px;
    font-size: 1rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.privacy-modal-footer .btn-primary {
    background-color: #0066cc;
    color: white;
}

.privacy-modal-footer .btn-primary:hover {
    background-color: #0052a3;
}

.privacy-modal-footer .btn-secondary {
    background-color: #6c757d;
    color: white;
}

.privacy-modal-footer .btn-secondary:hover {
    background-color: #5a6268;
}

/* Privacy Page Styles */
.privacy-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.privacy-page-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.privacy-page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #0066cc;
    border-bottom: 3px solid #0066cc;
    padding-bottom: 15px;
}

.privacy-page-content h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.privacy-page-content h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #0066cc;
}

.privacy-page-content section {
    margin-bottom: 30px;
}

.privacy-page-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.privacy-page-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
    line-height: 2;
}

.privacy-page-content ul li {
    color: #555;
    margin-bottom: 10px;
}

.privacy-contact-section {
    background-color: #f0f7ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #0066cc;
    margin-top: 30px;
}

.privacy-actions {
    margin-top: 40px;
    text-align: center;
}

.privacy-actions .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    text-decoration: none;
}

/* Footer Styles */
.translator-footer {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    color: #666;
}

.translator-footer p {
    margin: 8px 0;
    font-size: 0.95rem;
}

.footer-links {
    margin-top: 12px;
}

.footer-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    padding: 4px 8px;
    transition: all 0.2s;
}

.footer-link:hover {
    text-decoration: underline;
    color: #0052a3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .privacy-modal-header h2 {
        font-size: 1.4rem;
    }

    .privacy-modal-body {
        padding: 16px;
    }

    .privacy-page-content {
        padding: 24px 16px;
    }

    .privacy-page-content h1 {
        font-size: 2rem;
    }
}