/* impressum — aus impressum.html <style> ausgelagert (§2.16 CSP: kein inline-<style>). Laedt NACH style.css → Kaskade wie zuvor. */
        .legal-page {
            margin-top: 80px;
            padding: 4rem 2rem;
            background: var(--light-gray, #f7fafc);
            min-height: calc(100vh - 80px);
        }
        .legal-page h1 {
            font-size: 2.5rem;
            color: var(--primary, #1a2b3c);
            margin-bottom: 0.5rem;
        }
        .intro-subtitle {
            font-size: 1rem;
            color: var(--gray, #718096);
            margin-bottom: 2rem;
        }
        .legal-section {
            background: white;
            padding: 2rem;
            margin-bottom: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .legal-section h3 {
            font-size: 1.3rem;
            color: var(--primary, #1a2b3c);
            margin-bottom: 1rem;
        }
        .legal-section p {
            line-height: 1.8;
            color: var(--text-dark, #2d3748);
            margin-bottom: 0.5rem;
        }
        .legal-section a {
            color: var(--accent-bright, #009cad);
            text-decoration: none;
        }
        .legal-section a:hover { text-decoration: underline; }
        .notice-small {
            font-size: 0.85rem;
            color: var(--gray, #718096) !important;
        }
        .legal-footer {
            margin: 2rem 0;
            font-size: 0.9rem;
            color: var(--gray, #718096);
        }
        .footer {
            background: var(--primary, #1a2b3c);
            color: white;
            padding: 2rem;
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-bottom p { margin: 0; font-size: 0.9rem; }
        .footer-bottom a { color: var(--gold, #d4a843); text-decoration: none; }
        .footer-bottom a:hover { text-decoration: underline; }
