Frequently Asked Questions

What are the new aviation regulations announced in March2025?

The new regulations aim to improve safety standards and streamline aviation operations. For more information, please visit our News section.

How do I obtain a safety inspection for my aircraft?

export default { components: { searchBar }, methods: { toggleAccordion(event) { event.target.classList.toggle('active'); }, searchFaqs(query) { const faqItems = document.querySelectorAll('#faq-container .accordion'); faqItems.forEach((item) => { const text = item.textContent.toLowerCase(); if (text.includes(query.toLowerCase())) { item.style.display = 'block'; item.nextElementSibling.style.display = 'block'; } else { item.style.display = 'none'; item.nextElementSibling.style.display = 'none'; } }); } }, mounted() { const searchInput = document.getElementById('search-input'); searchInput.addEventListener('input', (event) => { this.searchFaqs(event.target.value); }); } }