const imgSection = document.querySelector('.store-footer__inner a:has(img[alt="Saudi Business Center"])');
if (imgSection) {
const newSec = `
`;
imgSection.insertAdjacentHTML('afterend', newSec);
}
const linkedinSection = document.querySelector('.footer-bottom .rounded_contacts li:last-child');
if (linkedinSection) {
const linkedinLogo = `
`;
linkedinSection.insertAdjacentHTML('afterend', linkedinLogo);
}
document.addEventListener('DOMContentLoaded', function() {