.cs-challenge-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: flex-start;
}

.cs-left-col {
	flex: 1 1 300px;
}

.cs-right-col {
	flex: 1 1 350px;
}

.cs-title {
	margin-top: 0;
	margin-bottom: 20px;
	padding-bottom: 10px;
	position: relative;
	color: #0d2b56;
}

.cs-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 3px;
	background-color: #4CAF50; /* Fallback, overridden by Elementor controls */
	border-radius: 2px;
}

.cs-description {
	color: #4a5568;
	line-height: 1.6;
}

.cs-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.cs-list-item {
	position: relative;
	padding-left: 25px;
	margin-bottom: 15px;
	color: #4a5568;
	line-height: 1.5;
}

.cs-list-item:last-child {
	margin-bottom: 0;
}

.cs-list-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px; /* Adjust based on text line-height */
	width: 8px;
	height: 8px;
	background-color: #4CAF50; /* Fallback, overridden by Elementor controls */
	border-radius: 50%;
}

@media (max-width: 767px) {
	.cs-challenge-wrapper {
		flex-direction: column;
		gap: 30px;
	}
}