Hi ninoparisi
It due to different layouts that these 2 pages are using, the 'Support' page uses 'default' layout which doesn't 'section-6' position - in which you're assigning AWESOME QUESTIONS module to.
I just updated this file on your site: /templates/ja_rent/tpls/blocks/mainbody/no-sidebar.php
to load this 'section-6' position
<?php
/**
* @package T3 Blank
* @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
jimport( 'joomla.application.module.helper' );
/**
* Mainbody 1 columns, content only
*/
?>
<div id="t3-mainbody" class="container t3-mainbody">
<div class="row">
<!-- MAIN CONTENT -->
<div id="t3-content" class="t3-content col-xs-12">
<?php if($this->hasMessage()) : ?>
<jdoc:include type="message" />
<?php endif ?>
<jdoc:include type="component" />
</div>
<!-- //MAIN CONTENT -->
<?php if ($this->countModules('section-6')) : ?>
<jdoc:include type="modules" name="<?php $this->_p('section-6') ?>" style="T3Section" />
<?php endif ?>
</div>
</div>
And the module is showing now, kindly check.