Seções aninhadas HTML5 e tags de cabeçalho

Eu tenho tags de seção aninhadas abaixo de outra tag de seção. Tudo bem começar os títulos de 1 novamente?

Por exemplo:

<section>
   <h1>Page Title</h1>
   <section>
      <h1>Section Title</h1>
      <h2>Section Sub Title</h2>
      <p>Sub section text</p>
   </section>
   <section>
      <h1>Section Title</h1>
      <h2>Section Sub Title</h2>
      <p>Sub section text</p>
   </section>
</section>

Obrigado, Mark

questionAnswers(2)

yourAnswerToTheQuestion