/* ----------------------------------------
   Shared service page helpers
---------------------------------------- */

.btn-sm {
	padding: 10px 16px;
	margin-top: 20px;
}

/* Shared process component */
.process-steps {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-top: 50px;
	flex-wrap: wrap;
}

.process-step {
	flex: 1 1 0;
	min-width: 300px;
	max-width: 300px;
}

.process-step-inner {
	position: relative;
	background: #fff;
	border: 1px solid #d9ddd9;
	border-radius: 18px;
	padding: 28px 28px 32px;
	min-height: 270px;
	box-sizing: border-box;
}

.process-icon-wrap {
	position: relative;
	margin-bottom: 28px;
	min-height: 58px;
}

.process-icon {
	width: 58px;
	height: 58px;
	border: 1px solid #13a851;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #13a851;
	font-size: 24px;
	background: #fff;
	position: relative;
	z-index: 2;
}

.process-number {
	position: absolute;
	top: -8px;
	right: 0;
	font-size: 72px;
	line-height: 1;
	font-weight: 700;
	color: rgba(19, 168, 81, 0.10);
	font-family: inherit;
}

.process-step h3 {
	font-size: 22px;
	line-height: 1.3;
	margin-bottom: 20px;
	color: #222;
}

.process-step p {
	margin: 0;
	max-width: 300px;
}

.process-connector {
	width: 42px;
	height: 2px;
	background: #13a851;
	flex: 0 0 42px;
	border-radius: 999px;
}

.map-card .img-in {
	width: 100%;
	height: 100%;
	min-height: 300px;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0,0,0,.10);
}

.check-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 20px;
	margin-top: 34px;
}

.check-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: #fff;
	border: 1px solid #d9ddd9;
	border-radius: 16px;
	padding: 18px;
	box-sizing: border-box;
}


.green-check {
	background-image: url('/assets/img/icons/list-checked.svg');
	background-repeat: no-repeat;
	background-size: contain;
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	margin-top: 3px;
}


/* Shared FAQ accordion */
.faq-wrap {
	border-bottom: 2px solid #333;
}

.faq-wrap:last-of-type {
	border-bottom: none;
}

.question-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 0;
	cursor: pointer;
}

.question-wrapper * {
	pointer-events: none;
}

.question-wrapper img {
	width: 40px;
	transition: .25s ease;
}

.answer-wrapper {
	display: none;
	font-size: 18px;
	padding-bottom: 18px;
}

@media (max-width: 992px) {
	.content-row.reverse .media-wrapper {
			margin-left: 0px;
	}
	.content-row .media-wrapper .img {
		max-height: 400px;
		min-height: 300px;
		margin-bottom: 20px;
	}
	.check-grid {
		grid-template-columns: 1fr;
	}
	.process-steps {
		flex-direction: column;
		align-items: stretch;
	}
	.process-step {
		max-width: unset;
	}
	.process-connector {
		width: 2px;
		height: 32px;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.process-step-inner {
		padding: 24px;
	}

	.process-number {
		font-size: 58px;
	}

	.process-step h3 {
		font-size: 20px;
	}
}