/* ===================================
   Privacy Policy Page Styles
   =================================== */

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

    .privacy-header h1 {
        color: #667eea;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

.last-updated {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
}

.privacy-content {
    color: #333;
    line-height: 1.8;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

    .privacy-section h2 {
        color: #667eea;
        font-size: 1.8rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #f0f0f0;
    }

    .privacy-section h3 {
        color: #764ba2;
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .privacy-section p {
        margin-bottom: 1rem;
        text-align: justify;
    }

    .privacy-section ul {
        margin-left: 2rem;
        margin-bottom: 1rem;
    }

    .privacy-section li {
        margin-bottom: 0.8rem;
        line-height: 1.6;
    }

        .privacy-section li strong {
            color: #667eea;
        }

    .privacy-section a {
        color: #667eea;
        text-decoration: none;
        font-weight: 500;
    }

        .privacy-section a:hover {
            color: #764ba2;
            text-decoration: underline;
        }

.contact-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 2rem;
    border-radius: 15px;
}

.contact-info {
    margin-top: 1rem;
}

    .contact-info p {
        margin-bottom: 0.8rem;
        font-size: 1.1rem;
    }

.consent-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

    .consent-notice h3 {
        color: #856404;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .consent-notice p {
        color: #856404;
        margin-bottom: 0;
    }

/* Responsive Styles */
@media (max-width: 768px) {
    .privacy-card {
        padding: 2rem 1.5rem;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section h3 {
        font-size: 1.2rem;
    }

    .privacy-section ul {
        margin-left: 1rem;
    }
}

/* Print Styles */
@media print {
    .privacy-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .privacy-section a {
        color: #000;
        text-decoration: underline;
    }
}
