/* FAQ Page Styles */

#faq {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  background: transparent;
}

#faq h2 {
  text-align: center;
  font-size: 3.5em;
  margin-bottom: 40px;
  color: #5a4a42;
  font-family: 'Great Vibes', cursive;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: white;
  border: none;
  text-align: left;
  font-family: 'Bacalisties', Arial, sans-serif;
  font-size: 1.8em;
  color: #5a4a42;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #f9f9f9;
}

.faq-question span:first-child {
  flex: 1;
}

.faq-icon {
  font-size: 1.8em;
  color: #9a8a82;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px 28px;
}

.faq-answer p {
  font-size: 1.5em;
  line-height: 1.7;
  color: #6a5a52;
  margin: 0;
}

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

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

.faq-answer strong {
  color: #5a4a42;
  font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
  #faq h2 {
    font-size: 2.8em;
  }

  .faq-question {
    padding: 20px 20px;
    font-size: 1.5em;
  }

  .faq-icon {
    font-size: 1.5em;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-question[aria-expanded="true"] + .faq-answer {
    padding: 0 20px 20px 20px;
  }

  .faq-answer p {
    font-size: 1.3em;
  }
}
