h1 {
  text-align: center;
  margin: 20px;
}

/* Styles für das Header-Modul */
.header-module {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background-color: #fff;
}

.header-module h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #000;
}

/* Container für die Buttons */
.header-buttons {
  display: flex;
  gap: 15px; /* Abstand zwischen den Buttons */
}

.module {
  position: relative;
  width: 100%;
  height: 450px;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.module a {
  text-decoration: none;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: var(--border-radius);
}

.module:hover {
  opacity: 0.9;
}

.static-module {
  background: url('../img/vision-background-img.jpg') center/cover no-repeat;
  text-align: center;
  height: 450px;
}

.static-module-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: var(--border-radius);
  color: #fff;
}
.static-module h2 {
  margin: 0;
  font-size: 1.8rem;
}

@media (max-width: 768px) {
  
  .module {
    height: 300px;
  }

  .header-module h1 {
    font-size: 2rem;
  }

  .header-buttons .button {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .static-module {
    height: 300px;
  }
}