.faq_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}

.faq_item {
  font-size: 18px;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.faq_question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 100%;
  font-weight: 600;
  padding: 25px 30px;
  cursor: pointer;
  gap: 10px;
}

.faq_question svg {
  transition: transform 0.3s ease;
  color: var(--color-textHighlight);
  flex-shrink: 0;
}

.faq_answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.faq_answer p:first-of-type {
  border-top: 1px solid var(--color-borderPrimary);
  padding-top: 25px;
}

.faq_answer p {
  padding: 0px 30px;
}

.faq_answer p:last-of-type {
  padding-bottom: 25px;
}

.faq_answer p:has(+ p),
.faq_answer p:has(+ ul),
.faq_answer ul:has(+ p) {
  padding-bottom: 10px !important;
}

.faq_answer_list {
  padding: 30px 50px;
  list-style-type: disc;
}

.faq_answer p + .faq_answer_list {
  padding-top: 0;
}

.faq_answer_list li {
  margin-bottom: 5px;
}
