.faq-section {
  padding: 40px 0;
}
.faq-section .site-inner {
  padding: 0 8px;
}
.faq-section .column {
  max-width: 756px;
  margin: 0 auto;
}

.faq-section .accordion-list {
  margin: 0;
  padding: 0;
  border-radius: 8px;
}
.faq-section .accordion-list li:last-child {
  border: unset;
}
.faq-section .accordion-list li {
  list-style-type: none;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
}
.faq-section .accordion-title {
  margin-bottom: 0;
  padding: 24px 40px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  font-weight: 600;
  font-size: 19px;
  font-family: "Archivo";
  cursor: pointer;
}

.faq-section .accordion-title::after {
  content: "\f345";
  font-family: dashicons;
  height: 32px;
  width: 32px;
  font-size: 21px;
  margin-left: 20px;
  font-weight: 600;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-section .accordion-list li.active .accordion-title::after {
  transform: rotate(90deg);
}

.faq-section .answer div {
  padding: 0 40px 24px;
  color: #616161;
  font-size: 18px;
  line-height: 1.62;
  font-family: "Archivo";
}

.faq-section .text-wrapper h2 {
  margin-bottom: 24px;
}
@media screen and (min-width: 960px) {
  .faq-section {
    padding: 80px 0;
  }

  .faq-section .text-wrapper h2 {
    margin-bottom: 48px;
  }
  .faq-section .accordion-title {
    font-size: 21px;
  }
}
