:root {
  --brand-green: #028062;
  --brand-green-dark: #01503e;
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --bg: #f7f8f7;
  --line: #e5e8e6;
}
.anzeige-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #ffe607;
  color: #1a1a1a;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  line-height: 1.2;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Roboto, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-header a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 1rem 1.25rem;
}
.site-header img {
  height: 3.25rem;
  width: auto;
  display: block;
  margin: 0 auto;
}
@media (min-width: 64em) {
  .site-header img {
    height: 4rem;
  }
}
main {
  flex: 1;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}
h1 {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
  line-height: 1.25;
  color: var(--brand-green-dark);
  text-align: center;
}
.intro {
  margin: 0 0 2rem;
  text-align: center;
  color: var(--muted);
  line-height: 1.6;
}
.contact-block {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.75rem 0;
  text-align: center;
}
.contact-block h2 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  color: var(--text);
}
.contact-block p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.55;
}
.email-link {
  display: inline-block;
  color: var(--brand-green);
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  word-break: break-all;
}
.email-link:hover {
  color: var(--brand-green-dark);
  text-decoration: underline;
}
.note {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}
footer {
  padding: 1.5rem 1rem 2rem;
  text-align: center;
  background: transparent;
}
footer nav ul {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}
footer a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
}
footer a:hover {
  text-decoration: underline;
}
.copyright {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.9375rem;
}
.legal-page {
  max-width: 42rem;
}
.legal-page h1 {
  margin-bottom: 1.5rem;
}
.legal-block {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}
.legal-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.legal-block h2 {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  color: var(--text);
}
.legal-block p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.65;
}
.legal-block p:last-child {
  margin-bottom: 0;
}
.legal-block .email-link {
  font-size: inherit;
}
.privacy-page {
  max-width: 48rem;
}
.privacy-page .stand {
  margin: 0 0 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9375rem;
}
.privacy-page .legal-block h2 {
  font-size: 1.25rem;
  color: var(--brand-green-dark);
}
.privacy-page .legal-block h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.05rem;
  color: var(--text);
}
.privacy-page .legal-block h4 {
  margin: 1rem 0 0.4rem;
  font-size: 1rem;
  color: var(--text);
}
.privacy-page .legal-block ul,
.privacy-page .legal-block ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.65;
}
.privacy-page .legal-block li {
  margin-bottom: 0.35rem;
}
.privacy-page .legal-block a {
  color: var(--brand-green);
  word-break: break-word;
}
.privacy-page .legal-block a:hover {
  color: var(--brand-green-dark);
}
.privacy-page .toc {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
}
.privacy-page .toc li {
  margin-bottom: 0.25rem;
}
.privacy-page .meta-line {
  margin: 0.25rem 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.9375rem;
}
