/* ============================================
   FAQ Accordion Section
   ============================================ */

.faq-section {
  padding: 4rem 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Each FAQ item */
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 20px;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
  -webkit-user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Chevron icon */
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "\2212"; /* minus sign */
}

/* Answer text */
.faq-answer {
  padding: 0 20px 16px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444;
}

.faq-answer a {
  color: #000;
  text-decoration: underline;
}

.faq-answer a:hover {
  color: #333;
}

/* ============================================
   Responsive
   ============================================ */

@media screen and (max-width: 479px) {
  .faq-section {
    padding: 3rem 0;
  }

  .faq-item summary {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 0 16px 14px;
    font-size: 0.85rem;
  }
}
