.custom-faq {
  padding: 30px 0;

  .custom-faq__subtitle {
    color: var(--Blue, #1A2A49);
    font-family: "Larken-Light";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    text-align: center;

    @media screen and (max-width: 999px) {
      font-size: 20px;
    }
  }

  .custom-faq__title {
    padding-bottom: 16px;
    width: fit-content;
    margin: 16px auto 80px;
    position: relative;
    text-align: center;

  &::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 1px;
    background-color: #656E7F;
  }

    @media screen and (max-width: 999px) {
      margin: 0 auto 40px;
    }
  }

  .custom-faq__container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .custom-faq__accordions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 1100px;

    @media screen and (max-width: 999px) {
      max-width: 100%;
    }
  }

  .custom-faq__accordions-item {
    .minus {
      display: none;
    }

    &.active {
      .custom-faq__accordions-item--title {
        background-color: #F8F8F7;
        border-radius: 20px 20px 0 0;
      }

      .custom-faq__accordions-item--body {
        border-radius: 0 0 20px 20px;
      }

      .plus {
        display: none;
      }

      .minus {
        display: flex;
      }
    }

    &:not(.active) {
      .custom-faq__accordions-item--title:hover {
        background-color: var(--Tan, #E8E7E3);
        transition: 0.25s linear;
      }
    }

    .custom-faq__accordions-item--title {
      display: flex;
      flex-direction: row;
      gap: 20px;
      align-items: center;
      justify-content: space-between;
      padding: 16px 32px 16px 40px;
      background-color: #F6F5F1;
      cursor: pointer;
      border-radius: 20px;

      &:hover {
        .accordion-icon-title-wrapper {
          background-color: #1A2A49;

          .accordion-icon-title-icon {
            color: #FFF;
          }
        }
      }

      @media screen and (max-width: 900px) {
        padding: 8px 8px 8px 20px;
      }

      .accordion-icon-title-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 72px;
        height: 72px;
        padding: 20px;
        transition: 0.25s linear;
        border-radius: 12px;
        background: var(--Blue, #1A2A49);
        color: #FFFFFF;
      }
    }

    .custom-faq__accordions-item--body {
      padding: 0 32px 0 40px;
      border-radius: 0 0 20px 20px;
      background: #F8F8F7;
      height: 0;
      overflow: hidden;
      transition: height 0.3s ease;

      @media screen and (max-width: 900px) {
        padding: 0 20px 0 20px;
      }

      .custom-faq__accordions-item--body-inner {
        padding-right: 110px;
        color: var(--Blue, #1A2A49);

        ul {
          list-style: inherit;
          margin-left: 20px;
        }

        @media screen and (max-width: 900px) {
          margin-top: 0;
          padding-right: 0;
        }
      }
    }
  }

  .custom-faq__support {
    width: 100%;
    max-width: 560px;
    margin: 45px auto 0;

    .custom-faq__support--title {
      margin-bottom: 16px;
      color: var(--Blue, #1A2A49);
      text-align: center;
      /*font-family: "HankenGrotesk-Bold";*/
font-family:var(--heading-font-family);
      font-size: 32px;
      font-style: normal;
      line-height: 130%; /* 41.6px */
    }

    .custom-faq__support--label {
      margin-bottom: 24px;
      text-align: center;
    }

    .custom-faq__support--button {
      width: 100%;
      max-width: 100%;
    }
  }
}