      .faq {
        display: flex;
        justify-content: space-between;
        gap: 80px;
      }

      .faq_comp {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      .faq_question {
        padding: 32px 24px;
        cursor: pointer;
        position: relative;
        background-color: rgba(245, 245, 245, 1);
        padding-bottom: 0px
      }

      .faq_question h3 {
        margin: 0;
        color: #1E90FF;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: Onest;
        font-weight: 600;
        font-style: SemiBold;
        font-size: 18px;
        line-height: 120%;
        letter-spacing: 4%;
        color: rgba(45, 45, 45, 1);
        list-style-type: decimal
      }

      .faq_arrow {
        transition: transform 0.3s;
      }

      .faq_arrow img {
        width: 24px;
        height: 24px;
      }

      .faq_answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        padding-top: 32px
      }

      .faq_answer ol {
        font-family: Onest;
        font-weight: 500;
        font-style: Medium;
        font-size: 16px;
        line-height: 140%;
        letter-spacing: 4%;
        margin: 0;
        color: rgba(99, 105, 124, 1);
        list-style-type: decimal;
        padding-left: 25px;
      }

      .faq_answer li {
        padding: 5px 0;
        color: rgba(99, 105, 124, 1);
        font-family: Onest;
        font-weight: 500;
        font-style: Medium;
        font-size: 16px;
        line-height: 140%;
        letter-spacing: 4%;
      }

      .faq_answer li:last-child {
        padding-bottom: 32px
      }

      .open .faq_arrow {
        transform: rotate(-180deg);
      }

      .open .faq_answer {
        max-height: 300px;
      }

      .faq_answer .faq__line {
        width: 100%;
        height: 1px;
        background-color: rgba(216, 216, 216, 1);
        margin-bottom: 16px;
      }

      .faq_text {
        display: flex;
        flex-direction: column;
        align-items: baseline;
        gap: 40px;
        max-width: 350px;
      }

      .faq_text__item {
        display: flex;
        flex-direction: column;
        align-items: baseline;
        gap: 10px;
        font-family: Onest;
        font-weight: 500;
        font-style: Medium;
        font-size: 16px;
        line-height: 140%;
        letter-spacing: 4%;
        color: rgba(99, 105, 124, 1);
      }

      .faq_text__top__faq {
        font-family: Onest;
        font-weight: 600;
        font-style: SemiBold;
        font-size: 84px;
        color: rgba(45, 45, 45, 1);
        line-height: 100%;
        letter-spacing: 0%;
        vertical-align: middle;
      }

      .faq_text__top__need {
        font-family: Onest;
        font-weight: 600;
        font-style: SemiBold;
        font-size: 42px;
        line-height: 100%;
        letter-spacing: 0%;
        vertical-align: middle;
      }

      .faq_text__item__link {
        display: flex;
        gap: 8px;
      }

      .faq_text__item__link a {
        text-decoration: underline;
        color: rgba(255, 44, 79, 1);
        cursor: pointer;
      }

      @media (max-width: 1000px) {
        .faq_text {
          display: none;
        }
      }


      @media (max-width: 769px) {
        .faq {
          order: -3;
        }

        .faq_question {
          padding: 24px;
          padding-bottom: 0px
        }

        .faq_question h3 {
          font-size: 16px;
        }

        .faq_answer {
          padding-top: 24px
        }

        .faq_answer li:last-child {
          padding-bottom: 24px
        }

        .faq_answer .faq__line {
          margin-bottom: 12px;
        }
      }

      @media (max-width: 550px) {
        .faq {
          padding: 20px;
          background-color: white;
          margin-top: 25px;
        }
      }