.faq-section {
  padding: 80px 0;
  background: #ffffff;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  color: #042D14;
  font-weight: 500;
  font-size: 1rem;
}

.section-heading {
  color: #1e293b;
  font-size: 2.5rem;
  margin: 16px 0;
}

.faq-description {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.faq-item:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.faq-question {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.question-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.question-number {
  color: #042D14;
  font-weight: 600;
  font-size: 0.875rem;
}

.question-text {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

.toggle-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #64748b;
  transition: transform 0.3s ease;
}

.toggle-btn svg {
  transition: all 0.3s ease;
}

.faq-item.active .toggle-btn svg {
  transform: rotate(45deg);
}

.faq-answer {
  margin-left: 24px;
  margin-right: 24px;
  margin-bottom: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out !important;
}

.faq-item.active .faq-answer {
  max-height: 1000px !important;
}

.faq-item:hover:not(:first-child) .faq-answer {
  max-height: 1000px !important;
}



.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.plus-icon {
  transition: transform 0.3s ease;
}

.plus-icon path {
  transition: all 0.3s ease;
}

.faq-item.active .plus-icon {
  color: #042D14;
}

.faq-question:hover .question-text {
  color: #042D14;
}

.faq-question:hover .toggle-btn {
  color: #042D14;
}