.rfv-sticky-cards-container {
	position: relative;
	width: 100%;
}

.rfv-sticky-card {
	position: sticky;
	top: calc(var(--card-top-offset, 100px) + (var(--card-index, 0) * var(--card-stack-offset, 40px)));
	background-color: #f9f9f9;
	border-radius: 15px;
	overflow: hidden;
	margin-bottom: var(--card-bottom-margin, 0px);
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.rfv-card-inner {
	display: flex;
	padding: 40px;
	gap: 30px;
	align-items: flex-start;
}

.rfv-card-image {
	flex-shrink: 0;
	width: 100px;
	/* Default width */
}

.rfv-card-image img {
	width: 100%;
	height: auto;
	display: block;
}

.rfv-card-content {
	flex-grow: 1;
}

.rfv-card-title {
	margin: 0 0 15px;
	font-weight: 700;
}

.rfv-card-description {
	color: #555;
	line-height: 1.6;
}

.rfv-card-description ul {
	margin: 15px 0;
	padding-left: 20px;
	list-style-type: disc;
}

.rfv-card-description li {
	margin-bottom: 8px;
}

@media (max-width: 767px) {
	.rfv-card-inner {
		flex-direction: column;
		text-align: center;
	}

	.rfv-card-image {
		margin: 0 auto 20px;
	}

	.rfv-card-description ul {
		text-align: left;
		display: inline-block;
	}
}