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

  .faqs .container_v2>span {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;

    display: block;

    margin: 24px 0 16px;
    color: var(--primary-color);

    @media (min-width: 1024px) {
      font-size: 22px;
      line-height: 30px;
      margin: 32px 0 16px;
    }
  }

  .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;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    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;
  }

  .faqs .container_v2 .faq_body ul {
    padding: 16px;
    margin: 0;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    max-width: 954px;

    li {
      position: relative;
      padding-left: 20px;

      &:not(:last-child) {
        margin-bottom: 8px;
      }

      &::after {
        content: '';
        position: absolute;
        width: 8px;
        height: 8px;
        background-color: var(--color-aqua-mid);
        top: 5px;
        left: 5px;
        transform: rotate(45deg) translateY(50%);
      }

      a {
        color: var(--primary-color);

        &:visited {
          color: var(--primary-color);
        }

        &:hover {
          color: var(--color-primary-mid);
          text-decoration: underline;
        }
      }
    }
  }
