/* Legal Pages Styling - Material Design 3 */

.legal-page {
    background-color: #fdfcff;
    color: #1a1c1e;
    padding-top: 100px;
    padding-bottom: 80px;
    font-family: 'Inter', sans-serif;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.legal-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0061a4;
    margin-bottom: 16px;
}

.legal-header .last-updated {
    color: #535f70;
    font-size: 0.9rem;
    font-weight: 500;
}

.legal-content {
    background: #ffffff;
    padding: 48px;
    border-radius: 28px;
    border: 1px solid #dee1e6;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #001d36;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-content h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: #0061a4;
    border-radius: 2px;
}

.legal-content p {
    margin-bottom: 24px;
    color: #44474e;
}

.legal-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 12px;
    color: #44474e;
}

.legal-footer {
    margin-top: 60px;
    text-align: center;
    padding: 32px;
    background: #f3f3f7;
    border-radius: 20px;
}

.legal-footer p {
    font-size: 0.95rem;
    color: #535f70;
    margin-bottom: 16px;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #0061a4;
    color: #ffffff;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
}

.contact-chip:hover {
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .legal-header h1 {
        font-size: 2.5rem;
    }
    .legal-content {
        padding: 24px;
    }
}