html, body {
  height: 100%;
  margin: 0;
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  max-height: 30vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.logo-image {
  width: 80%;
  height: auto;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  text-align: center;
}

/* Über Uns */
#ueber-uns {
  padding: 2em;
  text-align: center;
}

.personen {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  margin-top: 1em;
}

.person {
  max-width: 400px;
  background: #ffffff;
  padding: 1.5em;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
}

.beruf {
  font-weight: bold;
  margin: 0.5em 0;
}

.beschreibung {
  margin-bottom: 1em;
}

.liste {
  text-align: left;
  margin: 0 auto;
  padding-left: 1.2em;
}

/* Footer */
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1em;
  background-color: #e9ecef;
}

.footer-links,
.footer-rechts {
  flex: 1 1 45%;
  margin: 0.5em 0;
}

.footer-rechts {
  text-align: right;
}

@media (max-width: 768px) {
  .personen {
    flex-direction: column;
    align-items: center;
  }

  .footer-rechts {
    text-align: left;
  }
}
