body {
  font-family: Arial, sans-serif;
  /*  background-image: url("/images/background.jpg"); */
  background-color: rgb(173, 173, 173);
  background-size: cover;
  background-attachment: fixed;
  color: #ffffff;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  height: auto;
}

/* Hero-Bereich */
.hero {
  background-image: url('https://example.com/forest-fire.jpg'); /* Bitte durch ein passendes Bild ersetzen */
  background-size: cover;
  background-position: center;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  color: #fff;
}

.hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: 1.2rem;
}

/* Inhaltsbereich */
.content {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.content article {
  background-color: #fff;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.content h2 {
  color: #2e7d32;
  margin-bottom: 1rem;
}

.content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.content ul li {
  margin-bottom: 0.5rem;
}
