
.faq-wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.faq-wrapper {
  font-family: "Poppins", sans-serif;
}

.faq-accordion {
  position: relative;
  margin: 1em 0;
}

.faq-toggle {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.faq-arrow {
  display: inline-block;
  right:0;
  position: absolute;
  width: 15px;
  height: 15px;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-right: 0.5em;
}

.faq-toggle:checked + .faq-question .faq-arrow {
  transform: rotate(-135deg); /* nach oben zeigen */
}

.faq-question {
  color: white;
  padding: 0em;
  position: relative;
}

.faq-question label {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  font-weight: bold;
  letter-spacing: 0.1px;
}

/*.faq-question label::after {
  content: "";
  display: inline-block;
  border: 15px solid transparent;
  border-left: 20px solid white;
  margin-right: 10px;
    position: absolute;
    right: 0; 
}*/

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-answer p {
  padding: 0em;
  margin: 0;
}


.faq-toggle:checked ~ .faq-answer {
  max-height: 500px;
}

.faq-answer a {
  color: steelblue;
}
