/* FAQs section */
.faqs-section {
  padding: 60px 0;
  margin: 60px 0;
  text-align: center;
}
.faqs-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.faq-item {
  background: var(--soft-white);
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(99, 46, 10, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 20px rgba(99, 46, 10, 0.1);
}
.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-question h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: var(--cider-brown);
  margin: 0;
  font-weight: 600;
}
.faq-toggle {
  font-size: 1.5rem;
  color: var(--harvest-gold);
  font-weight: 300;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.active .faq-answer {
  padding: 20px 30px 25px 30px;
  max-height: 200px;
  font-weight: 500;
}
.faq-answer p {
  font-family: "EB Garamond", serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--wood-ash);
  margin: 0;
}
