* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #222;
}

a {
    color: #0073aa;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

/* top bar */
.top-bar {
    background: #f4a623;
    color: #000;
    padding: 8px 24px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar .logo {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-bar .adv-label {
    font-size: 11px;
}

/* page */
.page-wrap {
    max-width: 920px;
    background: #ffffff;
    margin: 0 auto;
    padding: 32px 36px 60px;
    font-family: "Open Sans";
}

.headline {
    font-size: 40px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 16px;
    font-family: "Open Sans";
}

.byline {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}

.hero-img,
.middle-img,
.beach-img,
.map-img {
    width: 100%;
    display: block;
    margin: 0 auto 24px;
}

p {
    font-size: 22px;
    line-height: 1.6;
    margin: 0 0 10px;
}

p strong {
    font-weight: 700;
}

h2 {
    font-size: 28px;
    margin: 26px 0 10px;
}

.section {
    margin-bottom: 26px;
}

.steps {
    margin-top: 6px;
}

.steps p {
    margin-bottom: 6px;
}

/* footer */
.footer-nav {
    text-align: center;
    margin: 40px 0 14px;
}

.footer-nav a {
    font-size: 14px;
    margin: 0 18px;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.4;
    color: #777;
    text-align: center;
}

.disclaimer p {
    margin-bottom: 6px;
}

@media (max-width: 600px) {
    .page-wrap {
        padding: 20px 16px 40px;
    }

    .headline {
        font-size: 22px;
    }
}