.faq-section {
  padding: 6rem 2rem;
  background: var(--primary);
  min-height: auto;
}

.faq-container {
  max-width: 65rem;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-header h2 {
  color: var(--neutral-light);
  font-weight: var(--fw-extra-bold);
  font-size: var(--fs-h2);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-header p {
  color: var(--neutral-light);
  font-size: var(--fs-h6);
  opacity: 0.9;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  border-left: 5px solid var(--accent);
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 20px rgba(85, 166, 48, 0.4);
  transform: translateY(-4px);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(85, 166, 48, 0.08),
    rgba(98, 127, 97, 0.08)
  );
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  color: var(--primary);
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(
    135deg,
    rgba(85, 166, 48, 0.15),
    rgba(98, 127, 97, 0.15)
  );
}

.faq-question i {
  color: var(--accent);
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
  filter: drop-shadow(0 2px 4px rgba(85, 166, 48, 0.3));
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
}

.faq-answer p {
  padding: 0 2rem 1.5rem 2rem;
  color: var(--neutral-dark);
  line-height: 1.7;
  opacity: 0.9;
}

.faq-item.active {
  border-left: 5px solid var(--primary-2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 30px rgba(240, 224, 84, 0.5);
  transform: translateY(-4px);
}

.faq-item.active .faq-question {
  background: linear-gradient(
    135deg,
    rgba(85, 166, 48, 0.2),
    rgba(98, 127, 97, 0.2)
  );
  color: var(--accent);
}

@media (max-width: 820px) {
  .faq-section {
    padding: 4rem 1rem;
  }

  .faq-header {
    margin-bottom: 3rem;
  }

  faq-header h2 {
    font-size: var(--fs-h3);
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .faq-section {
    padding: 3rem 1rem;
  }

  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
  }

  .faq-answer p {
    padding: 0 1.25rem 1rem 1.25rem;
    font-size: 0.9375rem;
  }
}
