.customer-faq-list-section {
  color: #353535;
}

.customer-faq-list-section__inner {
  max-width: 1184px;
  margin: 60px auto;
}

.customer-faq-list-section__title {
  margin: 0;
  color: #353535;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.customer-faq-list-section__list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.customer-faq-list-section__item {
  padding: 20px 10px !important;
  border-bottom: 1px solid #353535;
}

.customer-faq-list-section__question-heading {
  margin: 0;
}

.customer-faq-list-section__question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: #353535;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.customer-faq-list-section__question-text {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
}

.customer-faq-list-section__arrow {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  transition: transform 0.2s ease;
}

.customer-faq-list-section__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.customer-faq-list-section__question[aria-expanded="true"] .customer-faq-list-section__arrow {
  transform: rotate(-180deg);
}

.customer-faq-list-section__question:focus-visible {
  outline: 2px solid #256fff;
  outline-offset: 4px;
}

.customer-faq-list-section__answer {
  padding: 0 50px 0 0;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
}

.customer-faq-list-section__answer[hidden] {
  display: none;
}

.customer-faq-list-section__answer a {
  color: #256fff;
}

.customer-faq-list-section__answer > :first-child {
  margin-top: 0;
}

.customer-faq-list-section__answer > :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 839px) {
  .customer-faq-list-section__inner {
    margin: 30px auto;
    padding: 0 10px;
  }

  .customer-faq-list-section__title {
    font-size: 22px;
  }

  .customer-faq-list-section__list {
    margin-top: 20px;
  }

  .customer-faq-list-section__item {
    padding: 10px !important;
  }

  .customer-faq-list-section__question {
    gap: 10px;
    padding: 5px 0;
  }

  .customer-faq-list-section__question-text {
    font-size: 16px;
    line-height: 1.1;
  }

  .customer-faq-list-section__arrow {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .customer-faq-list-section__answer {
    padding-right: 20px;
    font-size: 12px;
  }
}
