/* Privacy Policy Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    padding: 40px 20px;
    border-bottom: 3px solid #007bff;
    margin-bottom: 40px;
}

header h1 {
    color: #007bff;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.last-updated {
    color: #666;
    font-size: 0.9em;
    font-style: italic;
}

main {
    padding: 20px 0;
}

section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fafafa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

section h2 {
    color: #007bff;
    font-size: 1.8em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

section h3 {
    color: #0056b3;
    font-size: 1.3em;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

section.intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #28a745;
}

.contact-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    margin-top: 15px;
    border: 1px solid #dee2e6;
}

.contact-info address {
    font-style: normal;
    line-height: 1.8;
    margin-top: 10px;
    color: #495057;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

section p {
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.8;
}

section ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

section ul li {
    margin-bottom: 10px;
    line-height: 1.8;
}

section ul li strong {
    color: #007bff;
}

footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 2px solid #e0e0e0;
    margin-top: 40px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    header h1 {
        font-size: 2em;
    }

    section {
        padding: 15px;
    }

    section h2 {
        font-size: 1.5em;
    }
}

/* Print Styles */
@media print {
    body {
        background-color: #fff;
    }

    .container {
        box-shadow: none;
    }

    section {
        page-break-inside: avoid;
    }
}

