.faq .faq-head {
  margin-bottom: 80px;
}

.faq .faq-head .title {
  font-weight: 700;
  font-size: 60px;
  margin-bottom: 0;

  @media (max-width: 768px) {
    font-size: 38px;
  }
}

.faq .faq-head p {
  font-weight: 500;
  font-size: 24px;
}

.faq-item {
  margin-bottom: 0;
}

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding: 16px;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.faq-toggle .faq-icon {
  transition: transform 0.3s ease;
}

.faq-icon.open {
  transform: rotate(45deg);
}

.faq-answer.open {
  display: block;
}

.faq-answer div {
  margin: 0;
  font-size: 17px;
}
