.faq-line {
  width: 30%;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #f4d03f);
  transition: width 0.6s ease-in-out;
  margin: 8px 0;
}

.faq-line.active {
  width: 100%;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out,
    padding 0.4s ease-in-out;
}

.faq-content.active {
  max-height: 300px;
  opacity: 1;
  padding-top: 0;
  padding-bottom: 1rem;
}

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

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

.faq-button {
  transition: background-color 0.2s ease-in-out;
}
