.service-header {
	padding: var(--section-spacing) 0 60px;
	text-align: center;
	background: var(--accent);
}

.service-back {
	display: inline-block;
	margin-bottom: 25px;
	color: var(--primary);
	font-weight: 600;
	text-decoration: none;
}

.service-back:hover {
	color: var(--secondary);
}

.service-header-icon {
	width: 90px;
	height: 90px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow);
}

.service-header-icon img {
	width: 46px;
	height: 46px;
	object-fit: contain;
}

.service-header h1 {
	margin: 0 0 15px;
}

.service-header-summary {
	max-width: 620px;
	margin: 0 auto;
	font-size: 1.1rem;
}

.service-body {
	padding: var(--section-spacing) 0;
}

.service-content {
	max-width: 780px;
	margin: 0 auto;
	line-height: 1.8;
}

.service-content > *:first-child {
	margin-top: 0;
}

.service-content > *:last-child {
	margin-bottom: 0;
}

.service-content ul,
.service-content ol {
	padding-left: 22px;
}

.service-content li + li {
	margin-top: 8px;
}

.service-cta {
	padding: var(--section-spacing) 0;
	text-align: center;
	background: var(--primary);
	color: var(--white);
}

.service-cta h2 {
	color: var(--white);
	margin: 0 0 12px;
}

.service-cta p {
	margin: 0 0 30px;
	opacity: .85;
}

.service-cta-buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

@media (max-width: 575px) {

	.service-header {
		padding-bottom: 45px;
	}

	.service-cta-buttons {
		flex-direction: column;
	}

}
