* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: #008000;
    color: #fff;
    text-align: center;
    padding: 40px 20px 0 20px;
}

.header-wrapper {
    display: flex;
}

.header-left {
    width: 80%;
}

.header-right {
    width: 20%;
}
.header-right img {
    width: -webkit-fill-available;
}

header h1 a {
    text-decoration: none;
    color: white;
}

h1 {
    margin: 0;
    font-size: 32px;
}

h2 {
    margin-top: 0;
    color: #004d00;
}

section {
    padding: 40px 0;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
}

section img {
    width: 100%;
    /*max-width: 600px;*/
    margin-top: 20px;
    border-radius: 8px;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

@media (max-width: 720px) {
    .header-wrapper {
	flex-direction: column;
	align-items: center;
	width: 100%;
    }
    .header-left h1 a {
        font-size: smaller;
    }
    .header-right {
        width: 50%;
    }
}
@media (min-width: 1060px) {
    header {
	height: 236px;
    }
}
