/* Legal Pages (Imprint & Privacy Policy) */

.legal-page {
    padding: 10rem 2rem 6rem;
    min-height: 100vh;
}

.legal-inner {
    max-width: 720px;
    margin: 0 auto;
}

.legal-page h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.legal-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 3.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

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

.legal-section h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--text);
}

.legal-section h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: var(--text);
}

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

.legal-section a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

.legal-section a:hover {
    opacity: 0.8;
}

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

.legal-section ul li {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.8;
    padding-left: 1.25rem;
    position: relative;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
}

.legal-section ul li strong {
    color: var(--text);
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 7rem 1.25rem 4rem;
    }
}
