/* Help Me Choose Highlighted Section */
.help-me-choose-highlighted-section {
	padding: 4rem 0;
	margin-bottom: 0;
	width: 100%;
}

.help-me-choose-highlighted-card {
	background-image: url('/assets/images/photo-1488646953014-85cb44e25828.avif');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 2rem;
	padding: 3.5rem 3rem;
	box-shadow: 0 8px 24px rgba(108, 66, 168, 0.25);
	position: relative;
	overflow: hidden;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.help-me-choose-highlighted-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgb(108 66 168 / 37%) 0%, rgb(90 53 144 / 60%) 100%);
	border-radius: 2rem;
	z-index: 1;
}

.help-me-choose-highlighted-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.help-me-choose-highlighted-title {
	font-size: 2.25rem;
	font-weight: bold;
	color: #fff;
	margin-bottom: 1rem;
	font-family: "Gilroy", sans-serif;
	line-height: 1.2;
}

.help-me-choose-highlighted-description {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	margin-bottom: 2.5rem;
}

.btn-help-me-choose-highlighted {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	color: #6c42a8;
	padding: 1rem 2.5rem;
	border-radius: 2rem;
	font-size: 1.125rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	border: none;
}

.btn-help-me-choose-highlighted svg {
	flex-shrink: 0;
	margin-left: 0.5rem;
	transition: transform 0.3s ease;
}

.btn-help-me-choose-highlighted:hover {
	background-color: #f8f9fa;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
	color: #6c42a8;
	text-decoration: none;
}

.btn-help-me-choose-highlighted:hover svg {
	transform: translateX(4px);
}

.btn-help-me-choose-highlighted:active {
	transform: translateY(0);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
	.help-me-choose-highlighted-section {
		padding: 2.5rem 0;
	}

	.help-me-choose-highlighted-card {
		padding: 2.5rem 1.5rem;
		border-radius: 1.5rem;
		min-height: 350px;
	}

	.help-me-choose-highlighted-title {
		font-size: 1.75rem;
		margin-bottom: 0.75rem;
	}

	.help-me-choose-highlighted-description {
		font-size: 1rem;
		margin-bottom: 2rem;
	}

	.btn-help-me-choose-highlighted {
		padding: 0.875rem 2rem;
		font-size: 1rem;
		width: 100%;
		max-width: 300px;
	}

	.btn-help-me-choose-highlighted svg {
		width: 18px;
		height: 18px;
	}
}

