/* --- LEGAL PAGE HERO --- */
.legal-hero {
    background-color: var(--bg-light);
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-top: 40px;
}

.legal-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- LEGAL CONTENT WRAPPER --- */
.legal-content {
    max-width: 800px; /* Narrower than main container for readability */
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border: var(--border-thick);
    border-radius: var(--radius);
    box-shadow: 4px 4px 0px rgba(0,0,0,0.05);
}

/* --- TYPOGRAPHY --- */
.legal-content h2 {
    font-size: 1.5rem;
    color: var(--brand-black);
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--brand-cyan); /* Brand accent */
    display: inline-block;
    padding-bottom: 5px;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--brand-black);
}

.legal-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #444;
}

/* --- CONTACT BOX --- */
.legal-contact {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: var(--radius);
    border: 1px solid #eee;
    text-align: center;
}

.legal-contact a {
    color: var(--brand-red);
    font-weight: 700;
    text-decoration: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .legal-content {
        padding: 1.5rem;
        border: 1px solid #ddd; /* Thinner border on mobile */
        box-shadow: none;
    }
}