Hi Peter.
If I may...
A few tips.
The tabular layout in 2023 is an anachronism.
Instead of this
<table style="border-collapse: collapse; width: 100%;" border="1">
<tbody>
<tr>
<td style="width: 100%; vertical-align: middle;"><span style="color: #ffffff;"><i class="fa-duotone fa-phone"> </i>0434 951 231</span></td>
</tr>
</tbody>
</table>
use that
<div style="color: #ffffff;">
<i class="fa-duotone fa-phone"></i> 0434 951 231
</div>
Or.
Also, a good practice is to make a phone link
<a href="tel:+COUNTRY_CODE0434951231" rel="nofollow" style="color: #ffffff;">
<i class="fa-duotone fa-phone"></i> 0434 951 231
</a>
And the issue of vertical alignment is solved through CSS
#sp-top3 .sp-column {
height: 100%;
display: flex;
align-items: center;
}
