.page-hbrain-training {
  .section-faq {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 100px;
    gap: 24px;
  }

  .faq-accordions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    max-width: 1200px;
  }

  .faq-item {
    border-bottom: 1px solid var(--grey-200);
    padding: 8px 0;
    overflow: hidden;
  }

  .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    color: var(--grey-950);

    p {
      font-family: var(--f-public-sans);
      text-transform: none;
      font-size: 18px;
      font-style: normal;
      line-height: normal;
      font-weight: 700;

      @media (max-width: 1026px) {
        text-align: left;
      }
    }

    &:hover {
      color: var(--primary-800);
    }
    &:focus {
      color: var(--primary-950);
    }
  }

  .faq-question[aria-expanded='true'] {
    color: var(--primary-800);
  }

  .faq-answer-text {
    padding: 0 32px;
    color: var(--grey-600);
    font-size: 16px;
    line-height: 1.6;
    white-space: pre-wrap;
    text-align: justify;
  }

  .faq-item:last-child {
    border-bottom: none;
  }
}
