.faqs .container_v2 .faqs_title h2 {
  text-align: start;
}

.faqs .container_v2 .faqs_title p {
  font-family: var(--font-outfit);
  text-align: start;
}

.faqs .container_v2 .faqs_title:has(p) {
  margin-bottom: 40px;
}

.faqs .container_v2 .faqs_container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.faqs .container_v2 .faq_item {
  width: 100%;
}

.faqs .container_v2 .faq_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-primary-mid);
  border-radius: 12px;
  padding: 12px 16px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  min-height: 50px;
}

.faqs .container_v2 .faq_header img[data="notshow"] {
  display: none;
}

.faqs .container_v2 .faq_header.active img[data="show"] {
  display: none;
}

.faqs .container_v2 .faq_header.active img[data="notshow"] {
  display: block;
}

.faqs .container_v2 .faq_header img {
  width: 16px;
  height: auto;
}

.faqs .container_v2 .faq_header h3 {
  font-family: var(--font-outfit);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin: 0;
  padding-right: 18px;
}

.faqs .container_v2 .faq_body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.faqs .container_v2 .faq_body p {
  font-family: var(--font-outfit);
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px !important;

  padding: 16px;
  color: var(--color-primary-hover);
  max-width: 100%;
}

.faqs .container_v2 .faq_body p a {
  color: var(--color-primary-mid);
  font-weight: 500;
  text-decoration: underline;
}