.faq-collection .faq-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.faq-collection .faq.active {
  display: block;
}

.faq-collection h3 {
  padding-bottom: 24px;
  font-weight: 600;
}

.faq-toggle-icon {
  color: #23A455;
  transform: rotate(-90deg);
  transition: transform 0.3s ease;
  margin-right: 8px;
}

.faq {
  border: 1px solid #000;
  background-color: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: -1px -1px 0 0;
}

.faq-collection .faq:first-child {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.faq-collection .faq:last-child {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

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

.faq .faq-header h6 {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: #23A455;
}

.faq.active .faq-toggle-icon {
  transform: rotate(90deg); /* Right to down */
}

.faq-collection p {
  margin: 0;
}