/* Container layout to prevent text from stretching too wide */
.legal-page-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #2d3748;
    /* Off-black for easier reading */
    line-height: 1.6;
}

/* Header Section */
.legal-header {
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.legal-header h1 {
    font-size: 32px;
    color: #1a202c;
    margin: 0 0 8px 0;
}

.last-updated {
    font-size: 14px;
    color: #718096;
    font-style: italic;
    margin: 0;
}

/* Content Sections */
.legal-section {
    margin-bottom: 30px;
}

.legal-section h2 {
    font-size: 20px;
    color: #1a202c;
    margin: 0 0 12px 0;
    padding-bottom: 4px;
    border-bottom: 1px solid #edf2f7;
}

.legal-section p {
    font-size: 16px;
    margin: 0 0 16px 0;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .legal-page-container {
        margin: 20px auto;
    }

    .legal-header h1 {
        font-size: 26px;
    }

    .legal-section h2 {
        font-size: 18px;
    }

    .legal-section p {
        font-size: 15px;
    }
}