.faqContainer {
  width: 100%;
  max-width: 850px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem 1rem 3rem 1rem;
}

.faqItem {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.question {
  font-family: 'Droid Serif', serif;
  font-weight: 700;
  font-size: 1.25em;
  line-height: 1.5;
  letter-spacing: 0.6px;
  color: #262F40;
  margin: 0;
  display: flex;
  gap: 4px;
}

.plus {
  color: #fec91a;
  margin-right: 0.5rem;
}

.answer {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 1em;
  line-height: 2;
  color: #29323c;
  margin: 0.5rem 0 0 2rem;
}

.link {
  color: #29323c;
  text-decoration: underline;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.link:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .question {
    font-size: 20px;
    line-height: 30px;
  }

  .answer {
    font-size: 16px;
    line-height: 27px;
  }
}
