/* Final CTA */
.final-cta {
	margin-bottom: 60px;
	padding: 60px 0;
	background-color: #0070C1;
}

.final-cta .container-large {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 60px;
}

.final-cta-content {
	flex: 1;
}

.final-cta-title {
	font-size: 42px;
	font-weight: 700;
	color: white;
	margin-bottom: 16px;
	line-height: 1.2;
	margin-top: 0;
}

.final-cta-text {
	font-size: 18px;
	line-height: 1.6;
	color: white;
	opacity: 0.95;
	margin: 0;
}

.btn-white {
	display: inline-block;
	background-color: white;
	color: #0070C1;
	padding: 18px 40px;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.btn-white:hover {
	background-color: #F5F5F5;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
	.final-cta-title {
		font-size: 32px;
	}

	.final-cta .container-large {
		flex-direction: column;
		text-align: center;
		gap: 32px;
	}

	.btn-white {
		width: 100%;
		text-align: center;
	}
}
