document.addEventListener('DOMContentLoaded', function () {
const homeIcon = document.querySelector('.kd-header-1-main-home-icon');
if (homeIcon) {
homeIcon.style.cursor = 'pointer';
homeIcon.addEventListener('click', function () {
window.location.href = '/';
});
}
});