body {
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #666;
    background-color: #fff;
    line-height: 1.7em;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

header {
    background-color: #f8f8f8;
    padding: 10px 0;
    border-bottom: 1px solid #e7e7e7;
}

header a {
    color: #333 !important;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-title {
    font-size: 1.75em;
}

.site-title a {
    text-decoration: none;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #2ea3f2;
    font-weight: bold;
    font-size: 1em;
}

h1, h2, h3, h4, h5, h6 {
    color: #333;
    padding-bottom: 10px;
    line-height: 1em;
    font-weight: 500;
}

h1 {
    color: rgb(51, 51, 51);
    font-size: 2em;
}

.home-image {
    width: 100%;
    overflow: hidden;
}

.home-image img {
    width: 100%;
    height: auto;
    display: block;
}

.home-banner {
    display: block;
    background: #eee;
    font-size: 1.9em;
    padding: 2.5em;
    color: #111;
    line-height: 1.1em;
    border-bottom: 3px solid #ddd;
    margin-bottom: 1.5em;
}

.home-contact {
    display: block;
    padding: 3em;
    text-align: center;
    background-color: rgb(126, 190, 197);
}

.home-contact a {
    font-size: 1.5em;
    color: white;
    border: 2px solid white;
    padding: 0.4em 1em;
    border-radius: 3px;
}

main {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

main a {
    color: #2ea3f2;
    text-decoration: none;
}

.content {
    flex: 3;
    padding-right: 20px;
}

.cta-button {
    background-color: #2ea3f2;
    border-radius: 5px;
    color: white;
    display: inline-block;
    font-size: 1.2em;
    font-weight: bold;
    padding: 14px 30px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease;
	margin: 1em 0;
}

.cta-button:hover {
    background-color: #1b8bd1;
}

aside {
    flex: 1;
    border-left: 1px solid #e7e7e7;
    padding-left: 1em;
    padding-top: 1em;
}

aside h2 {
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

aside ul {
    list-style: none;
    padding: 0;
    margin-top: 0.5em;
}

aside ul li {
    margin-bottom: 5px;
}

aside ul li a {
    text-decoration: none;
    color: #666;
}

aside ul li a:hover {
    color: #999;
}

aside ul li a:hover {
    text-decoration: underline;
}

footer {
    background-color: #222222;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #e7e7e7;
    margin-top: 20px;
    color: #888;
}

footer p {
    margin: 0;
}

footer a {
    text-decoration: none;
    color: #888;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .site-title {
        display: none;
    }

    .home-banner {
        font-size: 1.75em;
        padding: 2em;
        margin-bottom: 1em;
    }

    .home-contact {
        padding: 1.5em;
    }

    aside {
        display: none;
    }
}
