/* Homepage FAQ */
.home-faq-section {
	background: #f4f8fb;
	overflow: hidden;
	position: relative;
}

.home-faq-section::before,
.home-faq-section::after {
	background: rgba(7, 94, 164, 0.06);
	border-radius: 50%;
	content: "";
	height: 260px;
	position: absolute;
	width: 260px;
}

.home-faq-section::before {
	left: -130px;
	top: -130px;
}

.home-faq-section::after {
	bottom: -150px;
	right: -130px;
}

.home-faq-section .container {
	position: relative;
	z-index: 1;
}

.faq-kicker {
	color: #075ea4;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.home-faq-section .heading {
	margin-bottom: 45px;
}

.faq-card {
	background: #fff;
	border-left: 5px solid #075ea4;
	box-shadow: 0 8px 24px rgba(22, 44, 66, 0.09);
	flex: 1 1 auto;
	margin-bottom: 30px;
	padding: 30px 28px 28px 82px;
	position: relative;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	width: 100%;
}

.faq-card:hover {
	box-shadow: 0 14px 34px rgba(7, 94, 164, 0.16);
	transform: translateY(-4px);
}

.faq-question-mark {
	align-items: center;
	background: #075ea4;
	border-radius: 50%;
	color: #fff;
	display: flex;
	font-family: "Montserrat", sans-serif;
	font-size: 20px;
	font-weight: 700;
	height: 42px;
	justify-content: center;
	left: 24px;
	position: absolute;
	top: 28px;
	width: 42px;
}

.faq-card h3 {
	font-size: 20px;
	line-height: 1.35;
	margin-bottom: 13px;
}

.faq-card p {
	line-height: 1.7;
	margin-bottom: 0;
}

.faq-card a {
	font-weight: 700;
	text-decoration: underline;
}

.faq-contact-note {
	background: #075ea4;
	color: #fff;
	margin: 10px auto 0;
	max-width: 760px;
	padding: 18px 24px;
	text-align: center;
}

.faq-contact-note a {
	color: #fff;
	font-weight: 700;
	text-decoration: underline;
}

/* Design rule: FAQ cards in each row remain equal height. */
@media (min-width: 768px) {
	.home-faq-section .faq-grid {
		align-items: stretch;
		display: flex;
		flex-wrap: wrap;
	}

	.home-faq-section .faq-grid > [class*="col-"] {
		display: flex;
	}
}

@media (max-width: 767px) {
	.faq-card {
		padding: 78px 24px 26px;
	}

	.faq-question-mark {
		left: 24px;
		top: 24px;
	}
}
