function ImpressumPage() {
  useReveal();
  return (
    <>
      <Nav active="impressum" />
      <main style={{ maxWidth: 760, margin: '0 auto', padding: 'clamp(80px, 10vw, 120px) var(--pad) 80px' }}>
        <h1 className="display" style={{ fontSize: 'clamp(32px, 5vw, 52px)', marginBottom: '2.5rem', paddingBottom: '1.5rem', borderBottom: '1px solid var(--line)' }}>Impressum</h1>

        <section style={{ marginBottom: '2.5rem' }}>
          <h2 style={{ fontFamily: 'var(--sans)', fontSize: '1rem', fontWeight: 700, marginBottom: '0.75rem', color: 'var(--fg)' }}>Angaben gemäß § 5 TMG</h2>
          <p className="body" style={{ color: 'var(--fg-muted)', lineHeight: 1.8 }}>
            Matthias Radlinger<br />
            Malermeister Radlinger<br />
            Griesbacher Straße 21<br />
            94081 Fürstenzell<br /><br />
            Telefon: <a href="tel:+4915167612488" style={{ color: 'var(--accent)' }}>01516 7612488</a><br />
            E-Mail: <a href="mailto:info@malermeister-radlinger.de" style={{ color: 'var(--accent)' }}>info@malermeister-radlinger.de</a><br />
            Website: <a href="https://malermeister-radlinger.de" style={{ color: 'var(--accent)' }} target="_blank" rel="noopener">malermeister-radlinger.de</a>
          </p>
        </section>

        <section style={{ marginBottom: '2.5rem' }}>
          <h2 style={{ fontFamily: 'var(--sans)', fontSize: '1rem', fontWeight: 700, marginBottom: '0.75rem', color: 'var(--fg)' }}>Berufsbezeichnung &amp; berufsrechtliche Regelungen</h2>
          <p className="body" style={{ color: 'var(--fg-muted)', lineHeight: 1.8 }}>
            Berufsbezeichnung: Maler- und Lackierermeister (verliehen in Deutschland)<br />
            Zuständige Kammer: Handwerkskammer Niederbayern-Oberpfalz<br />
            Eingetragen in der Handwerksrolle
          </p>
        </section>

        <section style={{ marginBottom: '2.5rem' }}>
          <h2 style={{ fontFamily: 'var(--sans)', fontSize: '1rem', fontWeight: 700, marginBottom: '0.75rem', color: 'var(--fg)' }}>Umsatzsteuer</h2>
          <p className="body" style={{ color: 'var(--fg-muted)', lineHeight: 1.8 }}>
            Umsatzsteuer-Identifikationsnummer gemäß § 27a UStG: wird auf Anfrage mitgeteilt.
          </p>
        </section>

        <section style={{ marginBottom: '2.5rem' }}>
          <h2 style={{ fontFamily: 'var(--sans)', fontSize: '1rem', fontWeight: 700, marginBottom: '0.75rem', color: 'var(--fg)' }}>Hinweis zur Demo-Website</h2>
          <p className="body" style={{ color: 'var(--fg-muted)', lineHeight: 1.8 }}>
            Diese Website ist eine Demo-Präsentation, erstellt durch <a href="https://localainow.com" style={{ color: 'var(--accent)' }} target="_blank" rel="noopener">localainow.com</a>.
            Sie stellt kein offizielles Webangebot des Unternehmens dar. Die offizielle Website finden Sie unter <a href="https://malermeister-radlinger.de" style={{ color: 'var(--accent)' }} target="_blank" rel="noopener">malermeister-radlinger.de</a>.
          </p>
        </section>

        <section style={{ marginBottom: '2.5rem' }}>
          <h2 style={{ fontFamily: 'var(--sans)', fontSize: '1rem', fontWeight: 700, marginBottom: '0.75rem', color: 'var(--fg)' }}>Haftung für Inhalte</h2>
          <p className="body" style={{ color: 'var(--fg-muted)', lineHeight: 1.8 }}>
            Als Dienstanbieter sind wir gemäß § 7 Abs. 1 TMG für eigene Inhalte auf diesen Seiten nach den allgemeinen Gesetzen verantwortlich. Bei Bekanntwerden von Rechtsverletzungen werden wir diese Inhalte umgehend entfernen.
          </p>
        </section>

        <section style={{ marginBottom: '2.5rem' }}>
          <h2 style={{ fontFamily: 'var(--sans)', fontSize: '1rem', fontWeight: 700, marginBottom: '0.75rem', color: 'var(--fg)' }}>Streitschlichtung</h2>
          <p className="body" style={{ color: 'var(--fg-muted)', lineHeight: 1.8 }}>
            Die EU-Kommission stellt eine Plattform zur Online-Streitbeilegung bereit:{' '}
            <a href="https://ec.europa.eu/consumers/odr" style={{ color: 'var(--accent)' }} target="_blank" rel="noopener">ec.europa.eu/consumers/odr</a>.<br />
            Wir sind nicht bereit oder verpflichtet, an Streitbeilegungsverfahren vor einer Verbraucherschlichtungsstelle teilzunehmen.
          </p>
        </section>
      </main>
      <Footer />
    </>
  );
}

ReactDOM.createRoot(document.getElementById('root')).render(<ImpressumPage />);
