/* =================================
   PRIVACY POLICY STYLES
   Version: 2.1 (Color Fix)
================================= */

/* --- CONTENT SECTION --- */
.privacy-section {
    padding: 100px 5%; 
    background-color: #ffffff;
    color: #111;
    min-height: 50vh;
}

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

/* --- HERO TYPOGRAPHY FIX --- */
/* This ensures the title is White on the Dark Background */
.privacy-hero-content h1 {
    color: #ffffff !important;
    margin-bottom: 20px;
}

/* --- CONTENT TYPOGRAPHY --- */
.privacy-content h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin-top: 60px;
    margin-bottom: 25px;
    color: #0a0a0a;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.privacy-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8; /* Improved readability */
    color: #333;
    margin-bottom: 20px;
}

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

.privacy-content li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 12px;
}

.privacy-content strong {
    font-weight: 600;
    color: #000;
}

.privacy-content a {
    color: #00C2FF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.privacy-content a:hover {
    color: #008ecb;
    text-decoration: underline;
}

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 900px) {
    .privacy-section { padding: 60px 5%; }
    .privacy-content h2 { font-size: 24px; margin-top: 40px; }
    
    /* Hero Title Adjustments for Mobile */
    .privacy-hero-content h1 { font-size: 36px !important; }
}