.faq-container {
  max-width: 800px;
  margin: 0px;
  font-family: Georgia, serif;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  cursor: pointer;
  padding: 15px 15px 15px 40px;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  user-select: none;
  transition: background 0.3s;
}

.faq-question::before {
  content: "+";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  font-size: 20px;
  transition: 0.3s;
}

.faq-answer {
  display: none;
  padding: 0 15px 15px 40px;
  color: #444;
  font-size: 16px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-question::before {
  content: "−";
}