A non-refundable deposit of 50% will be charged at the time of booking. Please view our cancellation policy page.
document.addEventListener("DOMContentLoaded", function() { const accordionButtons = document.querySelectorAll(".accordion-button"); accordionButtons.forEach(button => { button.addEventListener("click", function() { this.classList.toggle("active"); const content = this.nextElementSibling; if (content.style.maxHeight) { content.style.maxHeight = null; } else { content.style.maxHeight = content.scrollHeight + "px"; } }); }); });