/* ===== Legal Pages Styles ===== */

.legal-page {
    min-height: 100vh;
    padding: 100px 24px 60px;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 40px;
}

.legal-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 14px;
}

.legal-content {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.legal-intro {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.legal-section:first-of-type {
    margin-top: 24px;
    padding-top: 0;
    border-top: none;
}

.legal-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.legal-section h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 20px 0 12px;
}

.legal-section p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-section ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
}

.legal-contact {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    margin-top: 8px;
}

.legal-footer-note {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.legal-footer-note p {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

.legal-back {
    text-align: center;
    margin-top: 32px;
}

/* ===== Nav Logo Link Fix ===== */
.nav-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .legal-page {
        padding: 80px 16px 40px;
    }

    .legal-header h1 {
        font-size: 28px;
    }

    .legal-content {
        padding: 24px;
        border-radius: var(--radius-lg);
    }

    .legal-section h2 {
        font-size: 18px;
    }

    .legal-section ul li {
        font-size: 14px;
    }
}

