/*Universal tag styling*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/*Webpage background color changes to light gray */
body {
    background-color: #d9dcd6;
}

/* Header section includes navigation tools. Added Id and class to make code cleaner.*/ 
#header-section {
    padding: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: #2a607c;
    color: #ffffff;
}

#hori {
    display: inline-block;
    font-size: 48px;
}

#seo {
    color: #d9dcd6;
}

/*Navigation tools styling*/
#navigation-section {
    padding-top: 15px;
    margin-right: 20px;
    float: right;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
}

#list {
    list-style-type: none;
}

.links {
    display: inline-block;
    margin-left: 25px;
}

a {
    color: #ffffff;
    text-decoration: none;
}
/*Header section and navigation tools section ends*/

/*Sets text font-size to 16px */
p {
    font-size: 16px;
}

/*Switched Hero image from CSS to HTML for better accessability*/
#hero {
    height: 800px;
    width: 100%;
    margin-bottom: 25px;
    background-size: cover;
    background-position: center;
}

/*Main content section start and content img styling. Condensed code to meet codebase sustainability and readibility*/
#content {
    width: 75%;
    display: inline-block;
    margin-left: 20px;
}

.content-section {
    margin-bottom: 20px;
    padding: 50px;
    height: 300px;
    font-family: 'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', 'sans-serif';
    background-color: #0072bb;
    color: #ffffff;
}

.content-section img {
    max-height: 200px;
}

.float-left {
    float: left;
    margin-right: 25px;
}

#float-right {
    float: right;
    margin-left: 25px;
}

.content-section h2 {
    margin-bottom: 20px;
    font-size: 36px;
}
/*End of main content section*/

/*Aside Benefits section start and benefits img styling. Refactored code to meet codebase sustainability and readability*/
#benefits-section {
    margin-right: 20px;
    padding: 20px;
    clear: both;
    float: right;
    width: 20%;
    height: 100%;
    font-family: 'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', 'sans-serif';
    background-color: #2589bd;
}

.benefit-aside {
    margin-bottom: 32px;
    color: #ffffff;
}

.benefit-aside h3 {
    margin-bottom: 10px;
    text-align: center;
}

.benefit-aside img {
    display: block;
    margin: 10px auto;
    max-width: 150px;
}
/*end of aside benefit section*/

/*Footer section start*/
footer {
    padding: 30px;
    clear: both;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
}

#final {
    font-size: 20px;
}
