/*.custom-accordion {
  border-top: 1px solid #333;
  margin-bottom: 3em;
}

.accordion-item {
  border-bottom: 1px solid #333;
}

.accordion-header {
  all: unset;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
  padding: 1em;
  background: white;
  font-size: 1rem;
  transition: background 0.3s;
  position: relative;
  box-sizing: border-box;
  gap: 1em;
  font-weight: 600;
}


.accordion-header:hover {
  background: #eee;
}

.accordion-header::after {
  content: '';
  border: solid #333;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(-45deg); /* Pfeil nach rechts *!/
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
  transform: rotate(45deg); /* Pfeil nach unten *!/
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1em;
  background: #fff;
  transition: max-height 0.6s ease, padding 0.6s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 1em;
}

.accordion-content p {
  margin: 0 0 1em;
}*/
