.quiz-container {
  background: white;
  max-width: 700px;
  margin: auto;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 4px solid #7b001c; /* Bordeauxroter Rahmen */
}

button {
  background: #7b001c; /* Bordeauxroter Button */
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  cursor: pointer;

}
/* Der innere Wrapper, der alle Logos enthält */
.kundenlogos .wpb_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Jedes Logo bekommt feste Breite */
.kundenlogos .wpb_single_image {
  width: calc(16.66% - 30px); /* 6 pro Zeile */
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}

/* Bildformatierung */
.kundenlogos .wpb_single_image img {
  max-height: 80px;
  width: auto;
  height: auto;
  filter: grayscale(100%) !important;
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* Hover-Effekt */
.kundenlogos .wpb_single_image img:hover {
  filter: grayscale(0%) !important;
  transform: scale(1.05);
}

/* Responsive Verhalten */
@media (max-width: 1200px) {
  .kundenlogos .wpb_single_image {
    width: calc(25% - 30px);
  }
}
@media (max-width: 768px) {
  .kundenlogos .wpb_single_image {
    width: calc(50% - 30px);
  }
}
@media (max-width: 480px) {
  .kundenlogos .wpb_single_image {
    width: 100%;
  }
}