* {
	box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;
	line-height: normal;
}

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

img {
	max-width: 100%;
}
.text-center {
	text-align: center;
}

h2 {
	margin: 40px 0;
}

p {
	font-size: 18px;
}

.page-header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

.page-header-inner__logo {
	height: 50px;
}

.page-header-inner__text {
	font-size: 18px;
	font-weight: bold;
	margin: 0;
}

.two-items {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	margin: 30px 0;
}

.two-items a > img {
	height: 100px;
}

ul li {
	margin-bottom: 20px;
	font-size: 18px;
}

.image-with-text {
	display: flex;
	margin-bottom: 30px;
}

.image-with-text img {
	margin-right: 20px;
	max-height: 300px;
	max-width: 300px;
}

.question {
	margin-top: 30px;
	font-weight: bold;
	font-size: 22px;
}

.answer {
	padding-left: 30px;
	border-bottom: 1px solid #000;
}

.answer:last-child {
	border-bottom: none;
}

.cta {
	display: block;
	margin: 20px 0;
	padding: 20px;
	width: 100%;
	border: none;
	background-color: #009c00;
	text-align: center;
	color: white;
	font-weight: bold;
	font-size: 24px;
	text-decoration: none;
	border-radius: 4px;
	transition: all 0.2s;
	text-transform: uppercase;
}

.cta:hover {
	background-color: #007900;
}
/* RESPONSIVE */

@media (max-width: 768px) {
	.page-header-inner {
		flex-direction: column;
		text-align: center;
	}

	.page-header-inner__logo {
		flex: none;
		height: auto;
		width: 150px;
		margin-bottom: 20px;
	}

	.two-items {
		flex-direction: column;
	}
	.two-items a {
		margin-bottom: 20px;
	}

	.two-items a > img {
		height: 80px;
	}

	.image-with-text {
		flex-direction: column;
	}
}
