/* Privacy Policy Page Styles */

.privacy-section {
    padding: 100px 0 50px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

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

.privacy-container h1 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.privacy-content {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.privacy-content section {
    margin-bottom: 40px;
}

.privacy-content h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
}

.privacy-content h3 {
    color: #34495e;
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.privacy-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.privacy-content ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
    list-style-type: disc;
}

.privacy-content ul li strong {
    color: #2c3e50;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 8px;
}

.language-switcher {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #ecf0f1;
}

.language-switcher p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.language-switcher .btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    margin: 0 10px;
    background: #fff;
    color: #3498db;
    border: 2px solid #3498db;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.language-switcher .btn-secondary:hover {
    background: #3498db;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-section {
        padding: 80px 0 30px 0;
    }

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

    .privacy-content {
        padding: 25px;
    }

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

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

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

    .language-switcher .btn-secondary {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }
}

/* Table of Contents (optional) */
.table-of-contents {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.table-of-contents h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.table-of-contents ol {
    margin-left: 20px;
}

.table-of-contents ol li {
    margin-bottom: 8px;
}

.table-of-contents ol li a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.table-of-contents ol li a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Print Styles */
@media print {
    .modern-nav,
    .modern-footer,
    .whatsapp-button,
    .language-switcher {
        display: none;
    }

    .privacy-section {
        padding: 0;
        background: white;
    }

    .privacy-content {
        box-shadow: none;
        padding: 0;
    }
}