Skip to content
	
	
	
    
    
    
jQuery(document).ready(function($) {
    // Đảm bảo click trên  vẫn hoạt động
    $(document).on('click', '.accordion .accordion-title', function(e) {
        e.preventDefault();
        var $item = $(this).closest('.accordion-item');
        var $content = $item.find('.accordion-inner');
        // Toggle trạng thái
        $item.toggleClass('active');
        $content.slideToggle();
    });
});