


.faq-section {
  padding: 3rem 2rem;
  background: #ffffff;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
}

.section-badge {
  display: inline-block;
  background: #f7f3ea;
  color: #b76b00;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.section-title {
  font-size: 2.3rem;
  margin: 1rem 0 0;
  font-family: 'Georgia', serif;
  font-weight: 700;
}

.section-subtitle {
  color: #5b6b7a;
  font-size: 1rem;
}

.faq-content {
  margin-top: 3rem;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 22px;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.chev {
  font-size: 1.4rem;
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 22px 18px;
  display: none;
  color: #6b7280;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .chev {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 4rem 1.5rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1rem 1.25rem;
  }

  .faq-answer {
    padding: 0 1.25rem 1rem;
  }
}