/* Add custom Js code below */
// Create the anchor element styled as a button
const button = document.createElement('a');
button.textContent = 'هل لديك سؤال؟ تواصل معنا الآن';
button.href = 'https://swarmedical.com/ar/%D8%A7%D9%84%D8%B4%D9%83%D8%A7%D9%88%D9%8A-%D9%88-%D8%A7%D9%84%D8%A7%D9%82%D8%AA%D8%B1%D8%A7%D8%AD%D8%A7%D8%AA/page-911779150';
button.className = 'custom-qa-button';
button.target = '_blank'; // optional: opens in new tab
// Add it after the section
const section = document.querySelector('section#QAs-7');
if (section) {
section.insertAdjacentElement('afterend', button);
}