Hi
The homepage often uses a specific layout with full-width layout. If you want it looks like in contact us page, you can simply change the class name called wrap by container.
I changed it for you via file: ROOT/templates/your_default_template/tpls/blocks/mainbody-home-1.php (this block called in ‘home-1’ layout which is used in homepage)
<div class="home">
<?php if ($this->countModules('home-1')) : ?>
<!-- HOME SL 1 -->
<div class="wrap t3-sl t3-sl-1<?php $this->_c('home-1')?>">
<jdoc:include type="modules" name="<?php $this->_p('home-1') ?>" style="raw" />
</div>
<!-- //HOME SL 1 -->
<?php endif ?>
Hope this helps.