body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f7f7f7;
  color: #333;
}

header img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

nav {
  background-color: #004d40;
  text-align: left;
  padding: 10px 0;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 20px;
  background-color: white;
  margin: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
  color: #004d40;
}

.seitentitel {
  text-align: center;
  font-size: 1.5em;
  margin: 10px 0;
  color: #004d40;
  font-weight: bold;
}


/* Zeilenabstand für Fließtext erhöhen */
p, li {
  line-height: 1.6em;
}

/* Layout für Text und Bilder */
.content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.text-bereich {
  flex: 2;
  margin-right: 20px;
}

.bild-bereich {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bild-bereich img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
}
