.faq-hero {
  padding-bottom: 20px;
}

.faq-category {
  margin-top: 60px;
}

.faq-wrap {
  margin-top: 25px;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
  transition: 0.2s;
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-question {
  width: 100%;
  padding: 20px;
  border: none;
  background: transparent;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question span {
  font-weight: 600;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.active .faq-icon {
  background: var(--accent);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.faq-answer-inner {
  padding: 0 20px 20px;
}