why has this element moved despite css being the same as other pages?

CSS might be the same, but in the 2nd link, your title is wrapped in a DIV as following:

<div id="page-top" class="warranty-registration-page content-area">
</div>

This element has a margin-top property with a value of 75px. This is why it is visible.

Either wrap your title inside the following DIV, or add a CSS property for your title as margin-top:75px.

The template you might want to change is located at templates/content-page-banner.php and templates/content-page-intro.php.