/**
 * Legal Pages CSS
 * Styles for Privacy Policy and Terms of Service pages
 */

body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Header Styles */
.privacy-header,
.terms-header {
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

/* Content Section Styles */
.content-section {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

/* Section Title Styles */
.section-title {
    color: #198754;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #198754;
}

/* Last Updated Text */
.last-updated {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Term Item Styles (for Terms of Service) */
.term-item {
    margin-bottom: 1.5rem;
}

.term-item h5 {
    color: #198754;
    margin-bottom: 0.75rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .privacy-header,
    .terms-header {
        padding: 2rem 0;
    }
    
    .content-section {
        padding: 1.5rem;
    }
}
