.faq-block .faq-list .faq-item {
    background-color: #edf1f6;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 8px;
  }
  
  .faq-block .faq-list .faq-item .faq-item__question {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      cursor: pointer;
      align-items: center;
  }
  
  .faq-block .faq-list .faq-item .faq-item__question .faq-item__question-title {
    cursor: pointer;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
  }
  
  .faq-block .faq-list .faq-item .faq-item__question .faq-item__question-icon {
    width: 32px;
    height: 32px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .faq-block .faq-list .faq-item.active .faq-item__question .faq-item__question-icon {
    transform: rotate(180deg);
  }
  
  .faq-block .faq-list .faq-item .faq-item__answer {
    max-width: 847px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
    color: #595959;
    padding-top: 8px;
  }