body {
    margin: 0;
    padding: 20px;
    background: #f3f3f3;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
}

#wrapper {
    max-width: 800px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.10);
    background-color: #fff;
    overflow: hidden;
}

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

.content {
    padding: 0 28px 36px;
}

.hide {
    display: none;
}

h1 {
    margin: 0 -28px 18px;
    padding: 14px 24px 18px;
    background: #6f9ed4;
    color: #fff;
    text-align: center;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 700;
}

h1 span {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 400;
}

h2 {
    margin: 28px 0 14px;
    color: #0069b4;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.35;
}

ul {
    margin: 0 0 22px 34px;
    padding: 0;
    list-style: none;
}

li {
    position: relative;
    margin-bottom: 6px;
    padding-left: 26px;
    font-size: 16px;
    line-height: 1.35;
}

li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 10px;
    height: 10px;
    background: #0069b4;
}

.sub-list {
margin-top: 10px;}

.sub-list li {
    padding-left: 24px;
}

.sub-list li::before {
    content: "-";
    top: 0;
    width: auto;
    height: auto;
    background: none;
    color: #000;
    font-weight: 400;
}

.intro {
    margin-top: 10px;
}

strong {
    font-weight: 700;
}

a {
    color: #0069b4;
    text-decoration: none;
    font-weight: 700;
}

a:hover {
    color: #0069b4;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 700px) {
    body {
        padding: 10px;
    }

    .content {
        padding: 0 20px 30px;
    }

    h1 {
        margin-left: -20px;
        margin-right: -20px;
        font-size: 18px;
    }

    h1 span {
        font-size: 17px;
    }

    h2 {
        font-size: 18px;
    }

    p,
    li {
        font-size: 15px;
    }

    ul {
        margin-left: 20px;
    }

    .sub-list {
        margin-left: 36px;
    }
}