.accordion {
  margin: 0 auto;
  background: url("/img/footer-bg.png") no-repeat left center / cover;
}

.accordion__list {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(3, auto);
  gap: 20px 40px;
}
.accordion__item {
  padding: 16px;
  border-radius: 8px;
  background: #7b8e9c;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}

.accordion__item.active > .accordion__content {
  padding-top: 18px;
  max-height: 150px;
}
.accordion__item.active > .accordion__label:after {
  transition: all 0.3s;
  transform: rotate(180deg);
}
.accordion__label {
  color: #fff;
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  position: relative;
  cursor: pointer;
}
.accordion__label:after {
  display: block;
  content: "";
  background-image: url("/img/arrow.svg");
  background-size: 40px 40px;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  translate: 0% -50%;
  right: 0;
  transition: all 0.3s;
}
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  color: #fff;
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 944px) {
  .accordion__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 500px) {
  .accordion__label:after {
    right: 5px;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
  }

  .accordion__label {
    color: #fff;
    font-size: 14px;
    line-height: normal;
    position: relative;
    cursor: pointer;
  }
}

#faq .section-title {
  max-width: 100%;
}