.faq-04 {
  width: 100%;
  padding: 0 3rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .faq-04 {
    padding: 0 1rem;
  }
}
.faq-04 .faq-04-width {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 10rem 0;
}
@media screen and (max-width: 800px) {
  .faq-04 .faq-04-width {
    padding: 3rem 0;
  }
}
.faq-04 .faq-04-titel {
  padding-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .faq-04 .faq-04-titel {
    padding-bottom: 2rem;
  }
}
.faq-04 .faq-04-headline h4{
  font-size: clamp(24px, 2.5vw, 40px);
  font-family: 'Poppins-Bold', Arial, sans-serif;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.faq-04 .faq-04-subheadline h5{
  font-size: clamp(16px, 2.5vw, 18px);
  font-family: 'Poppins-Regula', Arial, sans-serif;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.faq-04 .accordion {
  border-bottom: 1px solid #069D84;
}
.faq-04 .accordion-item {
  background-color: transparent;
  margin: 0.5rem 0;
}
.faq-04 .accordion h4 {
  font-size: clamp(16px, 2.5vw, 18px);
  font-family: 'Poppins-Bold', Arial, sans-serif;
  color: #FFFFFF;
  line-height: 150%;
}
.faq-04 .accordion-item-body-content p {
  font-size: 16px;
  font-family: 'Poppins-Regula', Arial, sans-serif;
  color: #FFFFFF;
}
.faq-04 .accordion-item-header {
  padding: 1.5rem 0;
  min-height: 3.5rem;
  line-height: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .faq-04 .accordion-item-header {
    padding: 0.5rem 0;
  }
}

.faq-04 .accordion-icon {
  transition: transform 0.3s ease;
}
.faq-04 .accordion-item-header.active .accordion-icon {
  transform: rotate(180deg);
}
.faq-04 .accordion-item-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px); 
  transition: max-height 0.1s ease-out, opacity 0.3s ease, transform 0.3s ease-out;
}
.faq-04 .accordion-item-body-content {
  padding: 1rem 3.5rem 1rem 0;
  line-height: 1.5rem;
  max-width: 1200px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .faq-04 .accordion-item-body-content {
    padding: 1rem 1rem 1rem 0;
  }
}
.faq-04 .accordion-item-body.active {
  opacity: 1;
  transform: translateY(0); 
}
/* Glow Effect */
.glow-bg {
      position: absolute;
      width: 80vw;
      height: 80vw;
      max-width: 700px;
      max-height: 700px;
      background: radial-gradient(42.64% 42.75% at 50% 50%, #069D84 0%, rgba(6, 157, 132, 0.00) 100%);
      filter: blur(10vw);
      animation: moveGlow 12s infinite alternate ease-in-out;
      z-index: -10;
    }
    @keyframes moveGlow {
      0% {
        top: 10%;
        left: 50%;
      }
      100% {
        top: 20%;
        left: 70%;
      }
    }
@media screen and (min-width: 1700px) {
  .glow-bg {
      max-width: 800px;
      max-height: 800px;
    }
}
@media (max-width: 800px) {
      .glow-bg {
        animation: moveGlowMobile 8s infinite alternate ease-in-out;
      }

      @keyframes moveGlowMobile {
        0% {
          top: 5%;
          left: 5%;
        }
        100% {
          top: 15%;
          left: 5%;
        }
      }
    }






