/* === Grundlayout / Farben === */
body {
  background-color: #121212;
}

.footer {
  background-color: #121212;
background-image: none;
  border-top: 1px solid #898989;
}

.footer .mod-custom {width:100%
}

h1, h3 {
  color: #fefefe;
}

p {
  color: #e5e5e5;
}

/* === Layout-Klassen === */
.text-center {
  text-align: center;
}

.hero-top {
  margin-top: 64px;
}

.logo {
  width: 600px;
  height: auto;
  display: inline-block;
}

h1 {
  margin-top: 64px;
}

/* === Feature-Sektion === */
.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  padding: 60px 20px;
  text-align: center;
}

.feature {
  max-width: 260px;
}

.icon {
  margin-bottom: 16px;
}

.feature .icon img {
  display: block;
  margin: 0 auto;
  width: 48px;
  height: 48px;
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #008BD0;
}

.feature p {
  line-height: 1.5;
}

/* Zentrierter, begrenzter Inhaltsbereich unterhalb des Logos */
.content-wrapper {
  max-width: 700px;      /* gewünschte Breite – kann angepasst werden */
  margin: 0 auto;        /* zentriert alles horizontal */
  text-align: center;    /* behält deine mittige Ausrichtung */
}