/* === FAQ ACCORDION === */
.faq {
  max-width: 1250px;
  margin: 3rem auto;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 1rem 0;
  cursor: pointer;
}

.faq-item strong {
  display: block;
  font-size: 1.2rem;
  color: var(--main-text-color);
  position: relative;
}

.faq-item strong::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.faq-item.open strong::after {
  content: "−";
}

.faq-item p {
  display: none;
  margin-top: 0.75rem;
  color: #444;
}

.faq-item.open p {
  display: block;
  animation: fadeIn 0.25s ease-in-out;
}

/* === ENTRANCE ANIMATION === */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
