.mm-rows-with-count-wrapper.mm-faqs-wrapper {
  .faq-item {
    border-bottom: 1px solid rgba(29, 46, 92, 0.3);
    margin-bottom: 0;
  }

  .clients.ours-inner {
    max-width: 900px;
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
  }

  .faq-question-text {
    flex: 1;
    font-weight: 500;
  }

  .faq-question-text * {
    font-size: 18px;
    letter-spacing: 0;
    line-height: 140%;
  }

  .faq-answer-content * {
    color: #707070;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 140%;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    font-size: 20px;
  }

  .faq-item.active .faq-icon {
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 0 20px;
  }
}