	<?php
	$dom = new WP_Query();
	$dom->query('pagename=Reasons');
	if( $dom->have_posts() ) :
	while ( $dom->have_posts() ) : $dom->the_post();
	the_content();
	endwhile;
	endif;
	?>