h1 {
  margin-bottom: 35px;
}

.faq-container > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-container > div .faq-question {
  position: relative;
  cursor: pointer;
  padding: 8px 50px 8px 20px;
  border-radius: 10px;
  background: var(--gray-4);
  color: var(--gray-1) !important;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: normal;
  letter-spacing: 1px;
}
.faq-container > div .faq-question span {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  transition: all 0.5s ease;
}
.faq-container > div .faq-question.active span {
  transform: translateY(-50%) rotate(0deg);
}
.faq-container > div .faq-answer {
  display: none;
  padding: 8px 20px;
  color: var(--gray-1) !important;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: normal;
  letter-spacing: 1px;
}

.super-container > div .content > nav {
  margin-bottom: 0;
}
