/* ===== Stewardis - Legal Pages ===== */

.legal-page {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: calc(100vh - 120px);
    background: var(--navy-900);
}

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

.legal-header h1 {
    font-family: var(--font-serif);
    font-size: 42px;
    color: var(--white);
    margin-bottom: 12px;
}

.legal-effective {
    font-size: 15px;
    color: rgba(255,255,255,0.4);
}

.legal-content {
    max-width: 780px;
    margin: 0 auto;
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 600;
    color: var(--gold-500);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(201,169,110,0.15);
}

.legal-content h3 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    margin-bottom: 12px;
}

.legal-content a {
    color: var(--gold-500);
    text-decoration: none;
}

.legal-content a:hover {
    color: var(--gold-400);
    text-decoration: underline;
}

.legal-contact {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 16px;
}

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

.legal-contact strong {
    color: var(--white);
}

/* Footer legal links */
.footer-legal-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 8px;
}

.footer-legal-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: var(--gold-500);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding-top: 100px;
        padding-bottom: 60px;
    }

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

    .legal-content {
        padding: 0 8px;
    }

    .legal-content h2 {
        font-size: 19px;
    }
}
