Chatbot
// Toggle chatbot visibility
const chatbotButton = document.getElementById('openChatbot');
const chatbotContainer = document.getElementById('chatbot');
chatbotButton.addEventListener('click', function() {
if (chatbotContainer.style.display === "none" || chatbotContainer.style.display === "") {
chatbotContainer.style.display = "block";
} else {
chatbotContainer.style.display = "none";
}
});