/* Legal Pages Styling */
.content-section {
    padding: 4rem 0;
    background: #fff;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper h2 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.content-wrapper h3 {
    color: #333;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
}

.content-wrapper p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-wrapper ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-wrapper ul li {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Last Updated Text */
.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .faq-section {
        display: none;
    }
    
    .content-wrapper {
        max-width: 100%;
        padding: 0;
    }
    
    .content-wrapper h2 {
        page-break-after: avoid;
    }
    
    .content-wrapper ul {
        page-break-inside: avoid;
    }
}
