/* Shared styles for legal pages (privacy.html, terms.html) */

.legal-page {
    padding-top: 120px;
    padding-bottom: 4rem;
    min-height: 100vh;
}

.legal-header {
    margin-bottom: 2.5rem;
}

.legal-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.legal-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.legal-panel {
    padding: 2.5rem 3rem;
    max-width: 860px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .legal-panel {
        padding: 1.75rem 1.5rem;
    }
}

.legal-section {
    margin-bottom: 2.25rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--glass-border);
}

.legal-section p {
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0.75rem;
}

.legal-section ul li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.legal-section ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.legal-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.03);
    margin-bottom: 2.25rem;
}

.legal-highlight i {
    color: var(--accent);
    font-size: 1.25rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.legal-highlight p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.legal-highlight strong {
    color: var(--text-primary);
}

.legal-divider {
    border: none;
    border-top: 1px solid var(--glass-border);
    margin: 2rem 0;
}

.legal-contact-box {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.03);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.legal-contact-box a {
    color: var(--accent);
    text-decoration: none;
}

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