.sc-container-d8a12155 {
	display: flex;
	flex-direction: column;
	gap: 40px; /* spacing between cards before they stack */
	padding-bottom: 100px;
}
.sc-card-d8a12155 {
	position: sticky;
	background: #ffffff;
	border-radius: 12px;
	padding: 0;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	display: flex;
	align-items: stretch;
	gap: 0;
}
.sc-card-image-d8a12155 {
	width: 40%;
	display: flex;
}
.sc-card-image-d8a12155 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.sc-card-body-d8a12155 {
	width: 60%;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
    transition: background-color 0.3s ease;
}

@media (max-width: 767px) {
	.sc-card-d8a12155 {
		flex-direction: column;
		text-align: center;
	}
	.sc-card-image-d8a12155, 
	.sc-card-body-d8a12155 {
		width: 100% !important;
	}
}