.faq {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  max-width: 1064px;
  margin: 0 auto;
  width: 100%;
}

.faq > h2 {
  max-width: 400px;
  text-align: center;
}

.faq_wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.faq_item {
  border-radius: 20px;
  border: 1px solid #2A2F3C;
  background: linear-gradient(180deg, #2A2E3A 0%, #1E2432 100%);
  padding: 25px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq_question {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}

.faq_btn {
  border-radius: 20px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  min-width: 30px;
}

.faq_btn i {
  color: #15181f;
  font-size: 14px;
  line-height: 1;
  margin-top: 2px;
}

.faq_btn:hover {
  background: #fff;
}


.faq_answer {
  gap: 15px;
  color: #7D8494;
  line-height: 1.4;

  display: none;
  flex-direction: column;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.faq_answer hr {
  border: none;
  color: #424855;
  background-color: #424855;
  height: 1px;
}

.faq_bottom {
  border-radius: 20px;
  border: 1px dashed #7D8494;
  color: #FFF;
  line-height: 1.4;
  text-align: center;
  padding: 25px;
}

@media (max-width: 768px) {
  .faq {
    order: -1;
  }
}