/* FAQ styles */
.faq-block {
  margin: 40px 0;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 12px 0;
}

.faq-question {
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 20px;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 700;
}

.faq-item.active .faq-question::after {
  content: '–';
}

.faq-answer {
  display: none;
  margin-top: 8px;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  display: block;
}
