/* ============================================
   PRIVACY POLICY PAGE STYLES
   ============================================ */

body {
    font-family: 'Open Sans', sans-serif;
    background: #0a0e27;
    color: #ffffff;
    min-height: 100vh;
    padding-top: 100px;
}

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

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: #a0a0b8;
    font-size: 0.95rem;
    font-style: italic;
}

.privacy-content {
    background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 255, 255, 0.2);
}

.privacy-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #00ffff;
    margin-top: 25px;
    margin-bottom: 15px;
}

.privacy-section p {
    color: #c0c0d0;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.privacy-section ul {
    color: #c0c0d0;
    line-height: 1.8;
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-section ul li {
    margin-bottom: 10px;
}

.privacy-section a {
    color: #00ffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }
    
    .privacy-page {
        padding: 40px 15px;
    }
    
    .page-header {
        margin-bottom: 40px;
    }
    
    .page-header h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 12px;
    }
    
    .last-updated {
        font-size: 0.85rem;
    }
    
    .privacy-content {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .privacy-section {
        margin-bottom: 30px;
        padding-bottom: 25px;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
        margin-top: 20px;
        margin-bottom: 12px;
    }
    
    .privacy-section p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .privacy-section ul {
        margin-left: 18px;
        margin-bottom: 15px;
    }
    
    .privacy-section ul li {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 25px 15px;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-section h3 {
        font-size: 1rem;
    }
    
    .privacy-section p,
    .privacy-section ul li {
        font-size: 0.9rem;
    }
}


