/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 03 2025 | 11:48:40 */
document.addEventListener("DOMContentLoaded", function () {
    const ekitAccordionTitles = document.querySelectorAll(".ekit-accordion .ekit-accordion-title span");

    ekitAccordionTitles.forEach((title) => {
        const h4Element = document.createElement("h4");
        h4Element.innerHTML = title.innerHTML; // Copy the content
        title.parentNode.replaceChild(h4Element, title); // Replace span with h4
    });
});