/* FAQ Accordion */
.mini-faq-section {
  margin-top: 40px;
  margin-bottom: 40px;
}

.faq-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #094c11;
  margin-bottom: 20px;
  text-align: center;
}

.faq-item {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #094c11;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(9, 76, 17, 0.15);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #094c11;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(9, 76, 17, 0.05);
}

.faq-item.active .faq-question {
  color: #094c11;
}

.faq-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  color: #094c11;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 600px;
  opacity: 1;
  padding: 0 20px 20px 20px;
}

.faq-answer-content {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.faq-item.active {
  border-color: #094c11;
}
