document.addEventListener("DOMContentLoaded", function () {
// Replace "Free Doctor Opinion" with "Free Doctor Opinion"
document.querySelectorAll(".emergency-title").forEach(function(element) {
element.textContent = "Free Doctor Opinion";
});
// Replace the subtext under "Free Doctor Opinion"
document.querySelectorAll(".emergency-subtext").forEach(function(element) {
element.textContent = "Please feel welcome to contact our friendly case manager with any or medical enquiry call us.";
});
// Replace "Committed To Build Positive, Safe, Patient Focused Care."
document.querySelectorAll(".committed-text").forEach(function(element) {
element.textContent = "Committed To Build Positive, Safe, Patient Focused Care.";
});
});