body {
	font-family: 'Roboto', sans-serif;
	line-height: 1.6;
	background-color: var(--bg-color);
	margin: 0;
}

header {
	text-align: center;
	margin: 50px;
}

header img {
	max-width: 400px;
}

.hero { 
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
	padding: 0 5%;
}

.hero p {
	font-size: 1.1em;
}

.store {
	padding: 20px;
	text-align: center;
}

.features-section {
	padding: 20px 5% 0;
	margin: 0 auto;
}

.feature-row {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-bottom: 60px;
}

.feature-row.reverse { 
	flex-direction: row-reverse;
}

.feature-text {
	flex: 0 1 380px;
	background-color: #ffffff;
	padding: 30px;
	border-radius: 18px;
}

.feature-row:not(.reverse) .feature-text {
	padding-right: 90px;
	margin-right: -40px;
}

.feature-row.reverse .feature-text {
	padding-left: 90px;
	margin-left: -40px;
	text-align: right;
}

.feature-header {
	display: block;
}

.feature-icon {
	height: 60px;
	width: auto;
	margin-bottom: 15px;
	display: block;
}

.feature-row:not(.reverse) .feature-icon {
	margin-right: auto;
}

.feature-row.reverse .feature-icon {
	margin-left: auto;
}

.feature-text h2 {
	color: var(--primary);
}

.feature-phone {
	flex: 0 0 220px;
	width: 220px;
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.feature-row:first-child .feature-phone,
.feature-row:last-child .feature-phone {
	margin-right: 50px;
}

.feature-row.reverse .feature-phone {
	margin-left: 50px;
}

.feature-phone img {
	width: 100%;
	filter: drop-shadow(0 10px 20px rgba(0,0,0,0.35));
}

footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
	font-size: 0.8em;
}

footer div {
	padding: 10px 20px;
}

footer a {
	color: #000000;
	text-decoration: none;
	font-weight: 500;
}

footer a:last-child {
	margin-left: 40px;
}

@media (max-width: 800px) {
	header {
		margin: 20px 50px 40px;
	}

	.hero h1 {
		font-size: 1.6em;
	}

	.feature-row, .feature-row.reverse {
		flex-direction: column;
	}

	.feature-text,
	.feature-row:not(.reverse) .feature-text,
	.feature-row.reverse .feature-text {
		margin: 0;
		padding: 25px;
		max-width: 320px;
		flex: 0 0 auto;
	}

	.feature-header { 
		display: flex; 
		align-items: center; 
		justify-content: space-between; 
		gap: 15px; 
		margin-bottom: 15px; 
	}

	.feature-row.reverse .feature-header { 
		flex-direction: row-reverse; 
	}

	.feature-icon { 
		height: 45px; 
		margin-bottom: 0; 
		flex-shrink: 0; 
	}

	.feature-text p { 
		text-align: center; 
		padding-bottom: 45px; 
	}

	.feature-phone, 
	.feature-row:first-child .feature-phone, 
	.feature-row:last-child .feature-phone, 
	.feature-row.reverse .feature-phone {
		width: 180px; 
		margin: -50px 0 0;
	}
}