/* Privacy Modal Styles */
.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    font-family: "Inter", sans-serif;
}

.privacy-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.privacy-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    max-height: 90%;
    width: 800px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.privacy-modal-header {
    background: linear-gradient(135deg, #3b5d50 0%, #2d4a3f 100%);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
}

.privacy-modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.privacy-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.privacy-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.privacy-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
    max-height: 60vh;
}

.privacy-modal-footer {
    padding: 20px 30px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.privacy-content h4 {
    color: #3b5d50;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 18px;
}

.privacy-content h5 {
    color: #2f2f2f;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 16px;
}

.privacy-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #6a6a6a;
}

.privacy-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: #6a6a6a;
}

.last-updated {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #3b5d50;
    margin-bottom: 2rem;
}

.highlight-box {
    background: #e8f5e8;
    border: 1px solid #3b5d50;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.highlight-box h3,
.highlight-box h5 {
    color: #3b5d50;
    margin-top: 0;
}

.border-top {
    border-top: 1px solid #e9ecef !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-modal-content {
        width: 95%;
        max-height: 95%;
        margin: 20px;
    }

    .privacy-modal-header {
        padding: 15px 20px;
    }

    .privacy-modal-header h2 {
        font-size: 20px;
    }

    .privacy-modal-body {
        padding: 20px;
    }

    .privacy-modal-footer {
        padding: 15px 20px;
        flex-direction: column;
    }

    .privacy-modal-footer .btn {
        width: 100%;
    }
}

/* Animation */
.privacy-modal {
    animation: fadeIn 0.3s ease-out;
}

.privacy-modal-content {
    animation: slideIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}