Thank you. We have received your information.
document.addEventListener("DOMContentLoaded", function() { const buttons = document.querySelectorAll(".read-more-btn"); buttons.forEach(button => { button.addEventListener("click", function() { const parent = this.previousElementSibling; parent.classList.toggle("show-more"); this.textContent = this.textContent === "Read More" ? "Read Less" : "Read More"; }); }); });