/* Privacy Policy Page Styles */

.privacy-policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #ffffff;
}

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #2563EB;
}

.privacy-header h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

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

.privacy-content {
    line-height: 1.8;
    color: #334155;
}

.policy-section {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #2563EB;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.policy-section h2 {
    color: #1e293b;
    font-size: 1.75rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

@media (max-width: 768px) {
    .privacy-policy-container {
        padding: 20px 15px;
    }
}

