.section-faq {
  width: 100%;
}

.faq-content {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-accordion-header {
  cursor: pointer;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.faq-accordion-header:hover {
  background: #f5f5f5;
  border-color: #0050f0;
}

.faq-accordion-header .flex-space {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-answer-wrapper {
  padding: 24px;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 8px 8px;
  margin-top: -16px;
  margin-bottom: 16px;
}

.Collapsible {
  margin-bottom: 16px;
}

.Collapsible__trigger {
  display: block;
}

.Collapsible__contentOuter {
  overflow: hidden;
}

.Collapsible__contentInner {
  padding: 0;
}

.faq-header-wrapper {
  transition: all 0.3s ease;
}

.faq-title {
  transition: font-size 0.3s ease;
}

.faq-arrow-icon {
  transition: all 0.3s ease;
}

@media only screen and (max-width: 768px) {
  .section-faq {
    padding: 40px 0 !important;
  }

  .faq-header-wrapper {
    padding: 0 16px !important;
    margin-bottom: 30px !important;
  }

  .faq-title {
    font-size: 22px !important;
    text-align: center;
    padding-right: 40px;
  }

  .faq-arrow-icon {
    right: 0 !important;
  }

  .faq-accordion-header {
    padding: 16px 20px;
  }

  .faq-accordion-header h3 {
    font-size: 18px !important;
  }

  .faq-answer-wrapper {
    padding: 20px;
  }

  .faq-content {
    padding: 0 16px;
  }

  .faq-content h3 {
    font-size: 18px !important;
    line-height: 1.5;
    margin-bottom: 16px !important;
  }

  .faq-content p,
  .faq-content li {
    font-size: 14px !important;
    line-height: 1.6;
  }

  .faq-content ul {
    padding-left: 20px;
  }

  .faq-content .margin-bottom-10 {
    margin-bottom: 8px !important;
  }

  .faq-content .margin-bottom-20 {
    margin-bottom: 16px !important;
  }

  .faq-content .margin-bottom-40 {
    margin-bottom: 30px !important;
  }
}

