/* Privacy Hero Section */
.privacy-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.privacy-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.privacy-hero-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.privacy-effective-date {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

/* Privacy Content Section */
.privacy-content {
    padding: 60px 0 80px;
    background-color: #fff;
}

.privacy-content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e8ecf1;
}

.privacy-section h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #34495e;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.privacy-section p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.privacy-section ul {
    margin: 0.5rem 0 1rem 1.5rem;
    padding: 0;
}

.privacy-section ul li {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.privacy-section a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.privacy-section a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.privacy-section strong {
    color: #2c3e50;
}

/* Footer Links (shared with about.css but included for standalone use) */
.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 0.75rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-sites {
    margin-bottom: 1rem;
}

.footer-sites a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin: 0 0.5rem;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-sites a:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* === Dark Mode === */

@media (prefers-color-scheme: dark) {
    .privacy-hero {
        background: linear-gradient(135deg, #0f1729 0%, #1a2744 100%);
    }
    .privacy-hero-title { color: #e2e8f0; }
    .privacy-hero-subtitle { color: rgba(226, 232, 240, 0.7); }
    .privacy-effective-date { color: rgba(226, 232, 240, 0.5); }

    .privacy-content { background-color: #0b1120; }

    .privacy-section h2 {
        color: #e2e8f0;
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
    .privacy-section h3 { color: rgba(226, 232, 240, 0.85); }
    .privacy-section p { color: rgba(226, 232, 240, 0.7); }
    .privacy-section ul li { color: rgba(226, 232, 240, 0.7); }
    .privacy-section a { color: #63b3ed; }
    .privacy-section a:hover { color: #90cdf4; }
    .privacy-section strong { color: #e2e8f0; }
}

html[data-theme="dark"] {
    .privacy-hero {
        background: linear-gradient(135deg, #0f1729 0%, #1a2744 100%);
    }
    .privacy-hero-title { color: #e2e8f0; }
    .privacy-hero-subtitle { color: rgba(226, 232, 240, 0.7); }
    .privacy-effective-date { color: rgba(226, 232, 240, 0.5); }

    .privacy-content { background-color: #0b1120; }

    .privacy-section h2 {
        color: #e2e8f0;
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
    .privacy-section h3 { color: rgba(226, 232, 240, 0.85); }
    .privacy-section p { color: rgba(226, 232, 240, 0.7); }
    .privacy-section ul li { color: rgba(226, 232, 240, 0.7); }
    .privacy-section a { color: #63b3ed; }
    .privacy-section a:hover { color: #90cdf4; }
    .privacy-section strong { color: #e2e8f0; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-hero-title {
        font-size: 2rem;
    }

    .privacy-hero-subtitle {
        font-size: 1rem;
    }

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

@media (max-width: 480px) {
    .privacy-hero {
        padding: 100px 0 40px;
    }

    .privacy-hero-title {
        font-size: 1.75rem;
    }

    .privacy-content {
        padding: 40px 0 60px;
    }

    .footer-sites a {
        display: block;
        margin: 0.25rem 0;
    }
}
