Skip to content
document.addEventListener('DOMContentLoaded', function() {
const closeButton = document.querySelector('.close-btn');
const stickySection = document.querySelector('.sticky-section');
if (closeButton && stickySection) {
closeButton.addEventListener('click', function() {
stickySection.style.display = 'none'; // Hide the sticky section
});
}
});