body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background-color: #d7e8e3; /* Salbeigrün */
  color: #333333;            /* Mildes Grau für Text */
  line-height: 1.7;
  font-size: 18px;
  padding: 1em;
  max-width: 960px;
  margin: 0 auto;
}

.container {
  background-color: #fdfaf6; /* Warmes Beige */
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Hauptüberschriften */
h1, h2 {
  color: #2a6f69; /* Petrolgrün */
}

/* Navigation / Links */
a {
  color: #2a6f69;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #1e4f4a;
}

/* Abschnittstrennlinie */
h2 {
  border-bottom: 2px solid #e9e3da; /* Sandfarben */
  padding-bottom: 0.3em;
  margin-top: 2em;
}

/* Listenpunkte */
li {
  margin-bottom: 0.5em;
}

/* Buttons (falls genutzt) */
.button {
  display: inline-block;
  background-color: #2a6f69;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 5px;
  text-decoration: none;
}

.button:hover {
  background-color: #1e4f4a;
}

#consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #f5f5f5;
  border-top: 1px solid #999;
  padding: 1rem;
  font-size: 0.95rem;
}

#consent-banner .consent-box {
  max-width: 900px;
  margin: 0 auto;
}

#consent-banner p {
  margin: 0 0 0.75rem 0;
}

#consent-banner .consent-buttons {
  display: flex;
  gap: 0.75rem;
}

#consent-banner button {
  padding: 0.45rem 0.8rem;
  cursor: pointer;
}



/* Farbschema „Beruhigender Halt“ */
/* Farbe	Zweck	Farbcode */
/* Salbeigrün	Hauptfarbe (Hintergrund, Titel)	#d7e8e3 */
/* Petrolgrün	Akzente, Links, Buttons	#2a6f69 */
/* Warmes Beige	Hintergrundcontainer, Ruhe	#fdfaf6 */
/* Mildes Grau	Fließtext, Kontrastfarbe	#333333 */
/* Sandfarben	Sekundärhintergrund, Abhebung	#e9e3da */
/* Hellgrau	Rahmen, feine Abgrenzungen	#cccccc */
/* Grün steht für Wachstum, Heilung und Hoffnung. */
/* Beige/Sand bringt Wärme, Natürlichkeit und Sicherheit. */
/* Dunkelpetrol sorgt für Seriosität und Tiefe. */


