/* ==========================================================================
   Legal Pages (Privacy Policy, Terms of Service)
   Reusable styles for text-heavy legal/informational pages
   ========================================================================== */

/* Hero Section */
.legal-hero {
    background-color: var(--warm-white, #F9F6F2);
    padding: 40px 0 32px;
    text-align: center;
}

.legal-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--bronze, #C67420);
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.legal-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--charcoal, #2D3748);
    margin: 0 0 8px 0;
}

.legal-updated {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--slate-gray, #4A5568);
    margin: 0;
}

/* Content Section */
.legal-content {
    background-color: var(--pure-white, #FFFFFF);
    padding: 60px 0 80px;
}

.legal-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Typography */
.legal-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--bronze, #C67420);
    margin: 48px 0 24px 0;
    line-height: 1.3;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal, #2D3748);
    margin: 32px 0 16px 0;
    line-height: 1.4;
}

.legal-content p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--slate-gray, #4A5568);
    line-height: 1.7;
    margin: 0 0 24px 0;
}

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

/* Lists */
.legal-content ul {
    margin: 0 0 24px 0;
    padding-left: 24px;
    list-style-type: disc;
}

.legal-content li {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--slate-gray, #4A5568);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-content li:last-child {
    margin-bottom: 0;
}

/* Ordered Lists (Numbered) */
.legal-content ol {
    margin: 0 0 24px 0;
    padding-left: 24px;
    list-style-type: decimal;
}

.legal-content ol li {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--slate-gray, #4A5568);
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 8px;
}

.legal-content ol li:last-child {
    margin-bottom: 0;
}

/* Links */
.legal-content a {
    color: var(--link-color, #1a4d2e);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.legal-content a:hover {
    color: var(--link-hover, #133820);
}

/* Contact Block */
.legal-contact-block {
    background-color: var(--warm-white, #F9F6F2);
    padding: 24px 32px;
    border-radius: 8px;
    margin: 32px 0;
}

.legal-contact-block p {
    margin-bottom: 8px;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .legal-hero {
        padding: 32px 0 24px;
    }

    .legal-hero h1 {
        font-size: 32px;
    }

    .legal-content {
        padding: 50px 0 60px;
    }

    .legal-content-wrapper {
        padding: 0 30px;
    }

    .legal-content h2 {
        font-size: 24px;
        margin: 40px 0 20px 0;
    }

    .legal-content h3 {
        font-size: 17px;
        margin: 28px 0 14px 0;
    }

    .legal-content p,
    .legal-content li {
        font-size: 16px;
    }

    .legal-content ol li {
        font-size: 16px;
    }

    .legal-contact-block {
        padding: 20px 24px;
    }
}
