.faq {
  padding: 60px 0;
  background: var(--c-bg);
}

.faq__list {
  max-width: 760px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 2px solid #ffffff;
  background: transparent;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 16px 16px 16px 16px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq__chevron {
  display: inline-flex;
  transition: transform 0.25s ease;
  color: #fff;
  flex-shrink: 0;
}

.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__item.is-open .faq__answer {
  max-height: 500px;
}
.faq__answer-inner {
  padding: 0 16px 18px;
  color: var(--c-muted);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 400;
}

@media (max-width: 768px) {
  .faq {
    padding: 40px 0;
  }
  .faq__question {
    font-size: 14px;
    padding: 14px 8px;
  }
}
