/* FAQ PAGE ACCORDION STYLES - LIGHT THEME */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 37, 27, 0.1);
  padding: 1.5rem 0;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: #00251b;
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  padding: 0.5rem 0;
}

.faq-question h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: #00251b;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  color: #404945;
  line-height: 1.6;
  font-size: 1rem;
}

.faq-item.active .faq-answer {
  max-height: 800px;
  padding-top: 1rem;
}

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

@media (max-width: 768px) {
  .faq-question { font-size: 1rem; }
}
