document.addEventListener('DOMContentLoaded', function() {
document.querySelectorAll('.toggle-bio').forEach(button => {
button.addEventListener('click', function() {
const bio = this.nextElementSibling;
const isVisible = bio.style.display === 'block';
bio.style.display = isVisible ? 'none' : 'block';
});
});
});