/* css/legal.css */

.legal-content-section {
    /* Vertical padding from global section style */
    background-color: #ffffff; /* White background for the content area of legal pages */
    padding-top: 2rem; /* Specific vertical padding for legal pages */
    padding-bottom: 3rem;
}

.legal-content-section .content-container {
    /* Uses global .content-container for max-width and horizontal padding */
    line-height: 1.6; /* Improve readability for long text */
}

.legal-content-section h1 {
    font-size: 2rem; /* Slightly smaller than main page titles */
    /* color: #ad5207; from global h1 */
    margin-bottom: 1rem;
    text-align: center;
}

.legal-content-section h2 {
    font-size: 1.5rem;
    /* color: #ad5207; from global h2 */
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.25rem;
}

.legal-content-section h3 {
    font-size: 1.25rem;
    /* color: #ad5207; from global h3 */
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content-section h4 {
    font-size: 1.1rem;
    /* color: #ad5207; from global h4 */
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600; /* semibold */
}

.legal-content-section p {
    margin-bottom: 1rem;
    color: #374151; /* text-gray-700 */
}

.legal-content-section p.last-updated {
    text-align: center;
    color: #6b7280; /* text-gray-500 */
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content-section ul {
    list-style-type: disc;
    margin-left: 1.5rem; /* Indent lists */
    margin-bottom: 1rem;
    padding-left: 1rem; /* Add padding for bullets */
}

.legal-content-section ul li {
    margin-bottom: 0.5rem;
    color: #374151; /* text-gray-700 */
}

.legal-content-section a {
    color: #ad5207; /* text-brand-primary */
    text-decoration: underline;
}

.legal-content-section a:hover {
    color: #e88e07; /* text-brand-secondary */
}

/* Responsive adjustments if needed for legal text */
@media (max-width: 768px) {
    .legal-content-section h1 {
        font-size: 1.75rem;
    }
    .legal-content-section h2 {
        font-size: 1.35rem;
    }
}