Hello,
Thanks for the details, I can see the problem in your website, and in the content template "Privacy Policy V2":
You are using a lots of nested [wpv-conditional] shortcodes, for example:
[wpv-conditional if="( $(wpcf-securing-information-do-you-have-an-ssl-certificate-installed-on-your-website) eq 'yes' )"]
encrypting transfers of data to or from our servers using Secure Sockets Layer (SSL) technology,
[wpv-conditional if="( $(wpcf-does-your-website-have-any-kind-of-ecommerce-online-sales-functionality) eq 'yes' )"]
encrypting payments you make on or via our website using Secure Sockets Layer (SSL) technology,
[/wpv-conditional]
[/wpv-conditional]
It is not recommended to use such kinds of codes insider a large content template, that will conduct some unexpected result.
I suggest you split the content template into multiple content templates, for example: one row one content template
<div class="row1">[wpv-post-body view_template="row-1"]</div>
<div class="row2">[wpv-post-body view_template="row-2"]</div>
<div class="row3">[wpv-post-body view_template="row-3"]</div>
https://toolset.com/documentation/user-guides/views-shortcodes/#wpv-post-body
and do not use nested [wpv-conditional] shortcodes in a single content template, for example, one [wpv-conditional] shortcode, one content template:
[wpv-conditional if="( $(wpcf-securing-information-do-you-have-an-ssl-certificate-installed-on-your-website) eq 'yes' )"]
[wpv-post-body view_template="anther-content-template"] here display another content template "anther-content-template"
[/wpv-conditional]
In the content template "anther-content-template", display the insider codes:
encrypting transfers of data to or from our servers using Secure Sockets Layer (SSL) technology,
[wpv-conditional if="( $(wpcf-does-your-website-have-any-kind-of-ecommerce-online-sales-functionality) eq 'yes' )"]
encrypting payments you make on or via our website using Secure Sockets Layer (SSL) technology,
[/wpv-conditional]
And test again.