.faq-section {
  width: 100%;
  background: var(--ap-surface, #f6f3ea);
  font-size: 18px;
  line-height: 1.5;
  border-bottom: 1px solid rgb(203, 203, 203);
  padding: 54px 18px 64px;
}

.faq-section h2 {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: left;
  padding: 0 0 25px 0;
}

.accordion {
  width: min(860px, 100%);
  margin: 0 auto;
  padding:  0 0 40px 0;
}

.accordion-item {
  border-bottom: 1px solid #555;
}

.accordion-trigger {
  width: 100%;
  min-height: 49px;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
  color: #111;
}

.plus {
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
}

.accordion-item.open .plus {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-content p {
  font-size: 16px;
  line-height: 1.45;
  color: #444;
  padding: 0 35px 18px 0;
}

@media (max-width: 560px) {
  .faq-section {
    padding: 36px 14px 48px;
  }

  .accordion-trigger {
    gap: 16px;
    font-size: 17px;
    line-height: 1.2;
    padding: 10px 0;
  }

  .plus {
    flex: 0 0 auto;
  }

  .accordion-content p {
    padding-right: 0;
    font-size: 15px;
  }
}
