.faq {
  padding: 4rem 8%;
  background: #f9f9f9;
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
  cursor: pointer;
}

.faq-item h3 {
  margin: 0;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item h3::after {
  content: "+";
  font-weight: bold;
  color: var(--color-primary);
}

.faq-item.open h3::after {
  content: "-";
}

.faq-item p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  margin: 0;
}

.faq-item.open p {
  max-height: 200px;
  opacity: 1;
  margin-top: 0.5rem;
}
