.a2-faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.a2-faq-item {
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.a2-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
  font-size: 18px;
  color: #fff;
}

.faq-icon {
  color: #f69322;
  font-size: 30px;
}

.a2-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
}

.a2-faq-answer p {
  color: #aaa;
  padding-bottom: 22px;
}

.a2-faq-item.active .a2-faq-answer {
  max-height: 600px;
}

/* active faq item */
.a2-faq-item.active {
  background: linear-gradient(180deg, #12163a 0%, #0a0a0a 100%);
  border: 1px solid #2d3691;
}
