.faq_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1rem;
  font-weight: 900;
}

.faq_item {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.faq_question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
}

.toggle_btn {
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

.toggle_btn i {
    transition: transform 0.3s ease;
}

.toggle_btn:hover {
  color: #09BFE3;
}

.faq_answer_wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.open {
  max-height: 90px;
}

.faq_answer {
  padding: 10px 0;
  color: #999;
  line-height: 1.5;
  transition: 0.3s;
}
