/* ============================================
   FAQs SECTION
   ============================================ */

.faqs-section {
  padding: var(--space-xxl) 0;
  background-color: #f5f8f7;
  margin-top:56px;
}

.faqs-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-xxl);
}

.faqs-title {
  font-size: var(--header-large);
  line-height: var(--header-large-lh);
  font-weight: 700;
  color: #004c46;
  margin: 0;
}

.faqs-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-top: 1px solid #99B9AD;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-family: "brandon-grotesque", "Helvetica Neue", Arial, sans-serif;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: var(--space-md);
}

.faq-question-text {
  font-size: var(--body-large);
  line-height: var(--body-large-lh);
  font-weight: 700;
  color: #004c46;
  flex: 1;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #004c46;
  transition: transform 0.3s ease;
}

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

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

.faq-answer-content {
  padding-bottom: var(--space-lg);
  font-size: var(--body-large);
  line-height: var(--body-large-lh);
  color: #333333;
  padding-left: 0;
}

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

/* ============================================
   TABLET (max-width: 1024px)
   ============================================ */

@media (max-width: 1024px) {
  .faqs-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* ============================================
   MOBILE (max-width: 767px)
   ============================================ */

@media (max-width: 767px) {
  .faqs-content {
    gap: var(--space-lg);
  }

  .faqs-title {
    font-size: var(--header-medium);
    line-height: var(--header-medium-lh);
  }

  .faq-question {
    padding: var(--space-md) 0;
  }

  .faq-question-text {
    font-size: var(--body-medium);
    line-height: var(--body-medium-lh);
  }

  .faq-answer-content {
    font-size: var(--body-medium);
    line-height: var(--body-medium-lh);
    padding-bottom: var(--space-md);
  }
}

