/* Externalized from privacy-policy.html — CSP's style-src 'self' does not
   allow inline <style> blocks, so this must be a linked stylesheet. */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    color: #2c3e50;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

h1 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #34495e;
    margin-bottom: 40px;
}

h1 .highlight {
    color: #0d6efd;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    color: #34495e;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 8px;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    color: #495057;
    margin-top: 30px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 16px;
    text-align: justify;
}

ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

a {
    color: #0d6efd;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

a:hover {
    color: #0056b3;
    border-bottom-color: #0056b3;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.3);
    border-bottom: none;
}

.back-link:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(13, 110, 253, 0.4);
    color: white;
}

.info-box {
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid rgba(13, 110, 253, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.info-box h4 {
    margin-top: 0;
    color: #0d6efd;
    font-weight: 600;
}

.contact-info {
    background: rgba(248, 249, 250, 0.8);
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.language-btn {
    background: transparent;
    border: none;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6c757d;
    font-weight: 500;
}

.language-btn:hover {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    transform: translateY(-1px);
}

.language-btn.active {
    background: #0d6efd;
    color: white;
    box-shadow: 0 2px 6px rgba(13, 110, 253, 0.3);
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}
