.faq-list {
  position: relative;
  z-index: 1;
}
.faq-list .faq-item {
  border-bottom: 1px solid #ADB2B1;
  padding-top: 20px;
  padding-bottom: 20px;
}
.faq-list .faq-question {
  padding: 15px 0px;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .faq-list .faq-question {
    padding: 0;
    font-size: 18px;
    line-height: 26px;
  }
}
.faq-list .faq-question .faq-toggle {
  color: white;
  width: 27px;
  height: 27px;
  flex-shrink: 0;
  font-size: 30px;
}
.faq-list .faq-question .faq-toggle:hover {
  cursor: pointer;
}
.faq-list .faq-answer {
  margin: 0 auto;
}
.faq-list .faq-answer p {
  margin: 0;
  padding-bottom: 20px;
  color: white;
}
@media screen and (max-width: 600px) {
  .faq-list .faq-answer p {
    padding: 10px 0;
  }
}