Environment, Social and Governance

document.addEventListener("DOMContentLoaded", function() { document.querySelector(".see-more-btn").addEventListener("click", function() { var content = document.querySelector(".extra-content"); if (content.style.display === "none" || content.style.display === "") { content.style.display = "block"; this.textContent = "See Less"; } else { content.style.display = "none"; this.textContent = "See More"; } }); });