.accordion {
  margin: 0 auto;
  padding-top: 150px;
  padding-bottom: 150px;
}
.accordion__item {
  padding: 30px 26px;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 10px;
  background: #064e3b;
}

.accordion__item.active > .accordion__content {
  padding-top: 18px;
  max-height: 300px;
}
.accordion__item.active > .accordion__label:after {
  transition: all 0.3s;
  transform: rotate(135deg);
}
.accordion__label {
  font-size: 24px;
  font-weight: 700;
  max-width: 90%;
  line-height: 24px;
  position: relative;
  cursor: pointer;
  color: #d1fae5;
  text-align: left;
  font-family: "Manrope";
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.2px;
}
.accordion__label:after {
  display: block;
  content: "";
  background-image: url("/img/faq-item.svg");
  background-size: 48px 48px;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: -40px;
  transition: all 0.3s;
}
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  color: #d1fae5;
  font-family: "Manrope";
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.2px;
}
.accordion__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}

@media (max-width: 744px) {
  .accordion {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .accordion__item {
    padding: 30px 16px;
  }

  .accordion__label:after {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    right: -25px;
  }
}

@media (max-width: 640px) {
  .accordion__label {
    font-size: 16px;
  }

  .accordion__content {
    font-size: 16px;
  }
}