/* FAQ Accordion Styles */
.faq-section {
  background-color: #fffef5;
  padding: 80px 0;
}

.faq-section .heading-39291 {
  margin-bottom: 1rem;
  text-align: center;
}

.faq-intro {
  color: #666;
  margin-bottom: 2.5rem;
  max-width: 700px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

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

.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

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

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: #fff;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #a3a04e;
}

.faq-question.active {
  color: #a3a04e;
  background: #f8f9fa;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: #a3a04e;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-question.active::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: #fff;
}

.faq-answer.open {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 25px 20px 25px;
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

.faq-answer-content p {
  margin-bottom: 0.5rem;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

.faq-answer-content ul {
  margin: 10px 0;
  padding-left: 20px;
}

.faq-answer-content li {
  margin-bottom: 5px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .faq-answer-content {
    padding: 0 20px 15px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .faq-question {
    padding: 15px;
    font-size: 0.95rem;
  }

  .faq-answer-content {
    padding: 0 15px 15px 15px;
  }
}
