/* ============================================
   Legal Pages - Shared Styles
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #1d1d1f;
    background: #f5f5f7;
    padding: 24px 16px 64px;
}

.legal-container {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

/* Header */
.legal-header {
    margin-bottom: 28px;
}

.back-link {
    display: inline-block;
    color: #007aff;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 16px;
}

.back-link:hover {
    text-decoration: underline;
}

.legal-header h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
}

.last-updated {
    font-size: 14px;
    color: #86868b;
}

/* Content */
.legal-content h2 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 10px;
}

.legal-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.legal-content p {
    margin-bottom: 10px;
    font-size: 15px;
}

.legal-content ul {
    list-style: none;
    margin-bottom: 12px;
    padding-left: 0;
}

.legal-content ul li {
    font-size: 15px;
    padding: 4px 0 4px 18px;
    position: relative;
}

.legal-content ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #007aff;
}

.legal-content a {
    color: #007aff;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content address {
    font-style: normal;
    margin-bottom: 10px;
    font-size: 15px;
}

/* Info boxes */
.info-box {
    background: #f0f5ff;
    border-left: 3px solid #007aff;
    border-radius: 8px;
    padding: 14px 16px;
    margin: 12px 0;
    font-size: 14px;
}

.info-box.warning {
    background: #fff8e6;
    border-left-color: #f59e0b;
}

/* Rights grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin: 16px 0;
}

.right-card {
    background: #f9fafb;
    border-radius: 10px;
    padding: 16px;
}

.right-card h4 {
    color: #1d1d1f;
    margin-bottom: 4px;
}

.right-card p {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 0;
}

/* Contact box */
.contact-box {
    background: #f9fafb;
    border-radius: 10px;
    padding: 16px;
    margin: 12px 0;
}

.contact-box.primary {
    background: #f0f5ff;
}

/* Footer */
.legal-footer {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    font-size: 13px;
    color: #86868b;
    text-align: center;
}

.legal-footer nav {
    margin-top: 8px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.legal-footer a {
    color: #007aff;
    text-decoration: none;
    font-size: 13px;
}

.legal-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .legal-container {
        padding: 24px 18px;
        border-radius: 12px;
    }

    .rights-grid {
        grid-template-columns: 1fr;
    }
}
