/* Legal Pages Styling */

.legal-content {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 60vh;
}

.legal-content .container {
    max-width: 800px;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--text-primary, #1a1a1a);
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary, #333);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-secondary, #555);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-primary, #333);
}

.legal-content .meta {
    color: var(--text-secondary, #666);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.legal-content .intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content a {
    color: #3B82F6;
    text-decoration: none;
}

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

/* Key Point Cards */
.legal-content .key-point {
    background: #f5f5f5;
    padding: 1.25rem;
    margin: 1rem 0;
    border-radius: 8px;
    border-left: 4px solid #3B82F6;
}

.legal-content .key-point h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--text-primary, #333);
}

.legal-content .key-point p {
    margin-bottom: 0;
}

.legal-content .key-point.warning {
    border-left-color: #EF4444;
    background: #FEF2F2;
}

/* Warning Boxes */
.legal-content .warning-box {
    background: #FEF3C7;
    padding: 1.25rem;
    margin: 1.25rem 0;
    border-radius: 8px;
    border-left: 4px solid #F59E0B;
}

.legal-content .warning-box.red {
    background: #FEE2E2;
    border-left-color: #EF4444;
}

.legal-content .warning-box strong {
    color: #B45309;
}

.legal-content .warning-box.red strong {
    color: #DC2626;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .legal-content .key-point {
        background: rgba(59, 130, 246, 0.1);
    }

    .legal-content .key-point.warning {
        background: rgba(239, 68, 68, 0.1);
    }

    .legal-content .warning-box {
        background: rgba(245, 158, 11, 0.15);
    }

    .legal-content .warning-box.red {
        background: rgba(239, 68, 68, 0.15);
    }
}

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

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.3rem;
    }

    .legal-content .intro {
        font-size: 1rem;
    }
}
