.section-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 2.5rem;
}

.carousel-wrapper {
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 60px;
}

.carousel-track-container {
	overflow: hidden;
	position: relative;
}

.carousel-track {
	display: flex;
	will-change: transform;
	backface-visibility: hidden;
	transform-style: preserve-3d;
}

.carousel-item {
	flex: 0 0 100%;
	width: 100%;
	padding: 15px 12px 10px 10px;
	box-sizing: border-box;
}

.priority-card {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	text-align: center;
	padding: 2rem 1.5rem;
}

.priority-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.priority-card img {
    width: 240px;
    height: 150px;
	margin: 0 auto 1.5rem;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.priority-card h3 {
	font-size: 1.4rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 1rem;
}

.priority-card p {
	color: #64748b;
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}

/* Navigation Buttons */
.carousel-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.95);
	border: none;
	border-radius: 50%;
	font-size: 1.6rem;
	color: #334155;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.25s ease;
	z-index: 10;
}

.carousel-nav:hover {
	background: white;
	color: #1e40af;
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.carousel-nav.prev {
	left: 10px;
}

.carousel-nav.next {
	right: 10px;
}

.carousel-nav span {
	line-height: 1;
}

/* Responsive */
@media (min-width: 640px) {
	.carousel-item {
		flex: 0 0 50%;
	}
}

@media (min-width: 1024px) {
	.carousel-item {
		flex: 0 0 33.333%;
	}
}

@media (max-width: 640px) {
	.carousel-wrapper {
		padding: 0 20px;
	}

	.carousel-nav {
		width: 44px;
		height: 44px;
		font-size: 1.4rem;
	}
}