@font-face {
    font-family: 'Source Sans 3';
    src: url('fonts/SourceSans3-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Source Sans 3';
    src: url('fonts/SourceSans3-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Source Sans 3';
    src: url('fonts/SourceSans3-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans 3', 'Arial', sans-serif;
    background: #9de68a;
    color: #007651;
}

.wrapper {
    max-width: 1020px;
    margin: 0 auto;
    padding: 25px 10px 0;
}

/* ── Hero image ── */
.hero img {
    display: block;
    width: 950px;
    max-width: 100%;
    margin: 0 auto;
}

/* ── Content block ── */
.content {
    width: 950px;
    max-width: 100%;
    margin: 100px auto 0;
    text-align: center;
}

h1 {
    font-size: 44px;
    line-height: 44px;
    color: #002917;
    text-transform: uppercase;
    font-weight: 900;
    margin: 0;
    padding: 0;
}

h2 {
    font-size: 19px;
    line-height: 22px;
    color: #007651;
    text-transform: uppercase;
    font-weight: 700;
    margin: 4px 0 0;
    padding: 0;
}

.body-text {
    margin-top: 28px;
    font-size: 19px;
    line-height: 22px;
    color: #007651;
    font-weight: 400;
}

.body-text p {
    margin-bottom: 16px;
}

.body-text p:last-child {
    margin-bottom: 0;
}

.body-text a {
    color: #463900;
    text-decoration: underline;
}

.body-text a:hover {
    text-decoration: none;
}

/* ── Separator ── */
.separator {
    width: 1000px;
    max-width: 100%;
    height: 3px;
    background-color: #007651;
    margin: 36px auto;
}

/* ── Footer ── */
footer {
    text-align: center;
    padding-bottom: 36px;
}

footer a {
    font-size: 19px;
    line-height: 22px;
    color: #007651;
    text-decoration: none;
    font-weight: 400;
}

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

/* ── Mobile ── */
@media (max-width: 700px) {
    h1 {
        font-size: 32px;
        line-height: 34px;
    }
}
