.faq-block {
  .section-title {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    color: #222222;
    text-transform: uppercase;

    @media screen and (max-width: 1580px) {
      font-size: 25px;
      line-height: 30px;
    }

    @media screen and (max-width: 960px) {
      font-size: 20px;
      line-height: 24px;
    }

    @media screen and (max-width: 669px) {
      font-size: 16px;
      line-height: 19.5px;
      text-align: center;
    }
  }

  .section-description {
    font-size: 28px;
    line-height: 34.13px;
    color: #222222;

    @media screen and (max-width: 960px) {
      font-size: 20px;
      line-height: 24px;
    }

    @media screen and (max-width: 669px) {
      font-size: 12px;
      line-height: 14.63px;
      text-align: center;
    }
  }

  .faq-background {
    background-image: url('../assets/smoke-bg.svg');
    background-repeat: no-repeat;
    background-size: contain;

    @media screen and (max-width: 767px) {
      background-position: bottom;
    }
  }

  .faq-grid {
    .faq-item {
      margin-bottom: 20px;
      display: flex;
      gap: 10px;

      @media screen and (min-width: 768px) {
        &.odd {
          .faq-content {
            margin-right: 20px;
          }
        }
        &.even {
          .faq-icon {
            margin-left: 20px;
          }
        }
      }

      .faq-icon img {
        width: 44px;
        height: 44px;
      }

      .faq-content {
        .faq-question {
          font-size: 20px;
          line-height: 24px;
          font-weight: 600;
          color: #6800FF;

          @media screen and (max-width: 960px) {
            font-size: 18px;
            line-height: 22px;
          }

          @media screen and (max-width: 669px) {
            font-size: 16px;
            line-height: 20px;
          }
        }

        .faq-answer {
          font-size: 16px;
          line-height: 22px;
          font-weight: 400;
          color: #222222;

          @media screen and (max-width: 960px) {
            font-size: 14px;
            line-height: 18px;
          }

          @media screen and (max-width: 669px) {
            font-size: 12px;
            line-height: 14px;
          }
        }
      }
    }
  }
}
