.faq {
  background-color: rgb(36, 33, 29);
}

.faq-title {
  font-size: 48px;
  color: rgb(244, 128, 0);
  margin-bottom: 10px;
}

.faq-tagline {
  font-size: 24px;
  color: #e6e6e6;
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #2a2927;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
  transition: 0.2s ease;
}

.faq-question:hover {
  color: rgb(244, 128, 0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #1f1e1c;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 20px 24px;
  font-size: 18px;
  color: #d0d0d0;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question {
  color: rgb(244, 128, 0);
}
