/* Legal pages specific styles - only for content area, not sidebar */

/* Main content wrapper for legal pages (about.html, contact.html, etc.) */
.legal-main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    min-height: -webkit-fill-available;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: auto;
}

/* Mobile adjustments for bottom navigation */
@media (max-width: 768px) {
    .legal-main-content {
        margin-left: 0;
        padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    }
}

.legal-content {
    background: #0a0a0f;
    color: #f4f6ff;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #f4f6ff;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #f4f6ff;
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #7bf6d6;
}

.legal-content p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: rgba(244, 246, 255, 0.85);
}

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

.legal-content li {
    margin-bottom: 0.5rem;
    color: rgba(244, 246, 255, 0.85);
}

.legal-content a {
    color: #7bf6d6;
    text-decoration: none;
}

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

.legal-box {
    background: rgba(244, 246, 255, 0.03);
    border: 1px solid rgba(244, 246, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.legal-meta {
    color: rgba(244, 246, 255, 0.6);
    margin-bottom: 2rem;
}

strong {
    color: #f4f6ff;
    font-weight: 600;
}
