/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:      #6BBFB5;
  --dark:      #0D1216;
  --navy:      #4A6C87;
  --text:      #0D1216;
  --text-mid:  #555555;
  --bg-light:  #F6F6F6;
  --white:     #FFFFFF;
  --border:    #DEDEDE;
  --footer-bg: #0F2341;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== HEADER ===== */
header {
  background: var(--footer-bg);
  padding: 24px 48px;
  display: flex;
  justify-content: center;
}
header img.logo {
  height: auto;
  max-height: 28px;
  width: auto;
  max-width: 200px;
  filter: brightness(0) invert(1);
}

/* ===== MAIN CONTENT ===== */
main {
  flex: 1;
  padding: 64px 24px 80px;
}
.container {
  max-width: 760px;
  margin: 0 auto;
}

h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--teal);
}

h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 40px;
  margin-bottom: 12px;
}

h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: 20px;
  margin-bottom: 8px;
}

p {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

/* ===== IMPRESSUM: Datenblöcke ===== */
.block {
  margin-bottom: 32px;
}
.block p {
  color: var(--text-mid);
  font-size: 0.97rem;
  margin-bottom: 4px;
}
.block .label {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--footer-bg);
  padding: 28px 48px;
  text-align: center;
}
footer img.footer-logo {
  height: auto;
  max-height: 22px;
  width: auto;
  max-width: 160px;
  margin: 0 auto 20px;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  display: block;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.50);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-links a:hover { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  header { padding: 20px 24px; }
  h1 { font-size: 1.6rem; }
  .footer-links { flex-direction: column; gap: 12px; align-items: center; }
}
