/* Import base styles */
@import url('guide.css');

/* Additional styles specific to legal documents */
.legal-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 40px auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 40px;
}

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

.section {
    margin-bottom: 30px;
}

.subsection {
    margin: 20px 0;
    padding-left: 20px;
}

/* Override some base styles */
h1 {
    color: #2c3e50;
    font-size: 2.2em;
    margin-bottom: 20px;
    border-bottom: none;
}

h2 {
    color: #34495e;
    font-size: 1.8em;
    margin-top: 40px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

h3 {
    color: #2980b9;
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 15px;
}

ul, ol {
    margin: 15px 0;
    padding-left: 30px;
}

li {
    margin-bottom: 8px;
    line-height: 1.6;
}

p {
    margin: 15px 0;
    line-height: 1.8;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin: 30px 0;
    border-left: 4px solid #3498db;
}