
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f7f7f7;
  color: #333;
}
.hero {
  background-color: #222;
  color: white;
  padding: 40px 20px;
  text-align: center;
}
.hero-img-small {
  max-width: 500px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
}
.hero h1 {
  margin: 0;
  font-size: 2.5em;
}
.hero p {
  font-size: 1.2em;
  margin: 10px 0 20px;
}
.cta-button {
  display: inline-block;
  background: #006633;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}
.kacheln {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 15px;
  justify-content: center;
}
.kachel {
  background: #eee;
  padding: 15px;
  flex: 1 1 200px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.hinweise {
  background: #fff;
  padding: 20px 15px;
  margin: 20px auto;
  max-width: 800px;
  border-left: 4px solid #006633;
}
.hinweise h2 {
  margin-top: 0;
}
.footer-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 10px;
}
.footer-logo {
  max-height: 50px;
  width: auto;
}
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
}
footer a {
  color: #99cc99;
  text-decoration: none;
}

.hero-small {
  background: #eee;
  padding: 20px;
  text-align: center;
}
.hero-small-img {
  max-height: 100px;
  margin-bottom: 10px;
}
.karriere {
  padding: 20px;
  max-width: 800px;
  margin: auto;
}
.karriere ul {
  list-style-type: disc;
  padding-left: 20px;
}

.impressum {
  padding: 20px;
  max-width: 900px;
  margin: auto;
  line-height: 1.6;
}
.footer-logo-large {
  max-height: 70px;
}

.footer-logo-xl {
  max-height: 80px;
}

.footer-logo-xxl {
  max-height: 90px;
}


/* Responsive Design Ergänzungen */
@media (max-width: 768px) {
  body {
    font-size: 16px;
    padding: 10px;
  }

  header.hero, header.hero-small {
    padding: 30px 10px;
  }

  .kacheln {
    flex-direction: column;
    align-items: stretch;
  }

  .kachel {
    width: 100%;
    margin-bottom: 10px;
  }

  nav.haupt-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav.haupt-navigation a {
    display: block;
    margin: 5px 10px;
  }

  iframe {
    width: 100% !important;
    height: auto;
  }

  .hero-img-small, .hero-img {
    max-width: 100%;
    height: auto;
  }

  footer {
    padding: 15px;
    font-size: 0.9em;
  }
}


/* Korrektur: Überschrift auf kleineren Geräten nicht abgeschnitten */
header.hero h1 {
  font-size: 2em;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Korrektur: Kachel-Schaltflächen nicht übermäßig hoch */
.kachel a {
  display: inline-block;
  padding: 0.5em 1em;
  font-size: 1em;
  line-height: 1.2;
  background: #006633;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}
.kachel a:hover {
  background: #004d26;
}
