:root {
  --teal: #289888;
  --teal-dark: #1c6f64;
  --violet: #584070;
  --bg-light: #f6f7f9;
  --text: #1f2933;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: white;
  line-height: 1.6;
  text-align: center;
}

/* LOGO HEADER */
.logo-header {
  padding: 40px 20px 20px;
}

.logo {
  max-width: 320px; /* LOGO GRÖSSE */
  width: 100%;
  height: auto;
}

.subtitle {
  margin-top: 10px;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--teal-dark);
}

/* NAVIGATION */
.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 15px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--teal-dark);
}

.main-nav a:hover {
  color: var(--violet);
}

/* CONTENT */
.section {
  padding: 50px 20px;
  max-width: 900px;
  margin: auto;
}

.section.alt {
  background: var(--bg-light);
}

h1, h2 {
  margin-bottom: 20px;
  color: var(--teal-dark);
}

ul {
  list-style: none;
}

ul li {
  padding: 6px 0;
}

/* FOOTER */
.footer {
  padding: 20px;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #ddd;
}

.kontakt { text-align: left; }
.kontakt-box { max-width: 520px; }
.mt { margin-top: 14px; }

.video-wrapper {
  margin: 30px auto 0;
  max-width: 900px;
  border-radius: 16px;
  overflow: hidden;
}

.intro-video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

.leistungen-grid {
  display: flex;
  flex-direction: column;
  align-items: center;   /* Karten mittig */
  gap: 20px;
  margin-top: 30px;
}

.leistung-card {
  width: 100%;
  max-width: 700px;   /* Breite der Karten */
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 20px;
  text-align: left;
}

.leistung-card h3 {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 18px;
}

.leistung-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.rechtlicher-hinweis {
  max-width: 700px;
  margin: -8px auto 20px;
  font-size: 13px;
  color: #666;
  text-align: center;
}

.hinweis-box {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid #e0e0e0;
  font-size: 13px;
  color: #777;
  text-align: center;
}

.hinweis-box::before {
  content: "ℹ️ ";
}

/* ✅ Responsive: Handy / Tablet */
@media (max-width: 768px) {

  /* Grundabstände */
  .logo-header {
    padding: 28px 16px 14px;
  }

  .logo {
    max-width: 240px; /* Logo auf Handy etwas kleiner */
  }

  /* Navigation: Zeilenumbruch & weniger Abstand */
  .main-nav {
    flex-wrap: wrap;
    gap: 14px;
    padding: 12px 10px;
  }

  /* Sections: weniger Abstand, bessere Lesbarkeit */
  .section {
    padding: 34px 16px;
  }

  /* Überschriften skalieren */
  h1 {
    font-size: 28px;
    line-height: 1.2;
    padding: 0 6px;
  }

  h2 {
    font-size: 22px;
    line-height: 1.25;
  }

  /* Fließtext */
  p {
    font-size: 16px;
  }

  /* Leistungen: Karten bleiben mittig, aber volle Breite */
  .leistung-card {
    max-width: 100%;
    border-radius: 14px;
  }

  /* Video: volle Breite */
  .video-wrapper {
    max-width: 100%;
  }
}

/* ✅ Sehr kleine Handys */
@media (max-width: 380px) {
  .logo {
    max-width: 210px;
  }

  .main-nav a {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .leistung-bilder {
    grid-template-columns: 1fr;
  }
}

.kontakt a {
  word-break: break-word;
  display: inline-block;
  padding: 2px 0;
}

.leistung-card {
  display: flex;
  flex-direction: column;
}

.leistung-bild {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #f6f7f9;
  margin-top: auto;
  border-radius: 12px;
}

.leistung-bilder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

/* Rechtseiten: Impressum & Datenschutz */
.legal {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.55;
}

/* Überschriften */
.legal h1 {
  margin: 0 0 20px;
}

.legal h2 {
  margin: 28px 0 10px;
}

.legal h3 {
  margin: 18px 0 8px;
}

/* Text & Listen */
.legal p {
  margin: 0 0 14px;
}

.legal ul, .legal ol {
  margin: 0 0 14px;
  padding-left: 18px;
}

.legal li {
  margin: 6px 0;
}

/* Blöcke (Adresse/Kontakt) */
.legal .block {
  margin: 0 0 20px;
}

/* Links etwas ruhiger */
.legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vorteile {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.vorteile li {
  margin-bottom: 8px;
  font-weight: 500;
}

.vorteile li::before {
  content: "✓ ";
  color: green;
  font-weight: bold;
}

.btn {
  background-color: #2c6e49;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: 0.2s;
}

.btn:hover {
  background-color: #245c3c;
}