html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    line-height: 18px;
    color: #525252;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    background: url(images/bg.jpg) repeat-x;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border: 0;
    margin: 0;
}

p{
    margin: 0 0 10px;
}

.container {
    width: 100%;
    max-width: 896px;
    margin: 15px auto 0;
    box-shadow: 0px 3px 5px 0 rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.header {
    background: url(images/header-bg.jpg) no-repeat center/cover;
    padding: 25px;
    border-bottom: 1px solid #015670;
    border-radius: 8px 8px 0 0;
}

.header .header-top img {
    margin: 0 0 15px;
}

.header .header-bottom .header-description {
    font-size: 17px;
    color: #015670;
    margin: 0;
}

.outer-container {
    background: url(images/body-bg.png) repeat-x;
    padding-top: 20px;
}

.outer-container .content-container {
    width: 778px;
    margin: 0 auto;
}

.outer-container .content-container .header-section {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
    background: url(images/graphic-img.png);
    background-size: cover;
    margin-bottom: 15px;
}

.outer-container .content-container .header-section h1 {
    font-size: 24px;
    color: #056886;
    font-weight: normal;
    margin: 0 0 15px;
}

.outer-container .content-container .header-section a {
    font-size: 15px;
    color: #070707;
    text-decoration: none;
    margin: 0;
}

.outer-container .content-container .body-section {
    padding: 0 30px;
}

.outer-container .content-container .body-section h1 {
    font-size: 24px;
    border-bottom: 1px dotted;
    margin: 0 0 13px;
    padding: 0 0 3px;
    font-weight: normal;
    color: #056886;
}

.outer-container .content-container .body-section ul {
    padding: 10px;
    margin: 0;
}

.outer-container .content-container .body-section ul li{
    list-style-type: none;
    line-height: 24px;
    padding: 0 0 0 30px;
    background: url(images/bullet.png) no-repeat;
}

.outer-container .content-container .body-section p:last-of-type{
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.footer-description {
  text-align: center;
  margin-top: 15px;
}

@media(max-width: 767px){
    .container{
        max-width: 350px;
    }
    .container .header{
        padding: 15px;
    }
    .outer-container .content-container{        
        width: 100%;
    }
    .outer-container .content-container .header-section{
        padding: 15px;
        margin: 0 10px 15px;
    }
    .outer-container .content-container .body-section{
        padding: 0 15px;
    }
}