body {
  font-family: Arial, sans-serif;
  background-color: #fdfdfd;
  color: #2e2e2e;
  margin: 0;
  padding: 0;
}

header, footer {
  background-color: #dbe9f4;
  color: #2e2e2e;
  text-align: center;
  padding: 1em;
  position: sticky;
  top: 0;
  z-index: 100;
}

.hero {
  background: url('hero.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 5em 2em;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section {
  max-width: 800px;
  margin: auto;
  padding: 2em;
  text-align: center;
}

.section ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: left;
  max-width: 500px;
}

.section li {
  margin-bottom: 0.5em;
  padding-left: 1.5em;
  position: relative;
}

/* Bullet-Punkte als grüne Häkchen */
.section li::before {
  content: "✔";
  color: #2d7032;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Footer-Links */
footer p, footer a {
  font-size: 1.2em;
  color: #2e2e2e;
  text-decoration: none;
}

footer a {
  color: #0066cc;
  font-weight: bold;
  text-decoration: underline;
}

/* Responsive Design */
@media (min-width: 600px) {
  .hero {
    padding: 6em 2em;
  }

  .section {
    max-width: 90%;
    padding: 2em;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 8em 2em;
  }

  .section {
    max-width: 800px;
    padding: 2em 3em;
  }
}
