document.addEventListener("DOMContentLoaded", function () {
const promoBanner = document.getElementById("promo-cta");
// Find the first section
const firstSection = document.querySelector('.sqs-block'); // Adjust if your first section has a different class
if (firstSection) {
// Calculate the height of the first section and add spacing
const firstSectionHeight = firstSection.offsetHeight;
promoBanner.style.marginTop = `${firstSectionHeight}px`;
}
});