How to put the Terms and Conditions on a separate page of the pdf?

I found this answer which seems to work: css - Google Chrome Printing Page Breaks - Stack Overflow

You’d want to add this code on the includes tab:

      div.page
      {
        page-break-after: always;
        page-break-inside: avoid;
      }

And then use the page class to force a break:

    <div class="page">
      <h1>This is Page 1</h1>
    </div>
    <div class="page">
      <h1>This is Page 2</h1>
    </div>
    <div class="page">
      <h1>This is Page 3</h1>
    </div>