/* Legal Documents Styles */
body { 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; 
    line-height: 1.6; 
    color: #333; 
    max-width: 700px; 
    margin: 0 auto; 
    padding: 20px; 
}

h1 { 
    color: #2c3e50; 
    margin-bottom: 5px;
}

.subtitle {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 30px;
    font-weight: 300;
}

h2 { 
    color: #34495e; 
    margin-top: 30px; 
}

.last-updated { 
    color: #666; 
    font-style: italic; 
    margin-bottom: 30px; 
}

.contact-info { 
    margin-top: 20px; 
    padding: 15px 0;
    border-top: 1px solid #eee;
}

.important { 
    background: #f8f9fa; 
    padding: 15px; 
    border-left: 4px solid #ffc107;
    margin: 20px 0; 
}

ul {
    margin: 10px 0;
}

li {
    margin: 5px 0;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }
} 