.srs-b822e8a7-container {
	width: 100%;
	font-family: inherit;
}

.srs-b822e8a7-grid {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

@media (min-width: 992px) {
	.srs-b822e8a7-grid {
		flex-direction: row;
		align-items: stretch;
		gap: 60px;
        height: 600px; /* Explicit fixed height to force overflow */
	}
	
	.srs-b822e8a7-col-left {
		width: 45%;
		position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
	}
	
	.srs-b822e8a7-col-right {
		width: 55%;
		overflow-y: auto; /* Enable internal scroll */
        padding-right: 20px; /* Space for scrollbar */
        height: 100%;
        scrollbar-width: thin; /* Firefox */
	}

    /* Custom Scrollbar for Chrome/Safari */
    .srs-b822e8a7-col-right::-webkit-scrollbar {
        width: 6px;
    }
    .srs-b822e8a7-col-right::-webkit-scrollbar-track {
        background: rgba(0,0,0,0.05);
        border-radius: 10px;
    }
    .srs-b822e8a7-col-right::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,0.2);
        border-radius: 10px;
    }
	
	.srs-b822e8a7-sticky-wrapper {
		height: 100%; 
		display: flex;
		flex-direction: column;
	}
}

.srs-b822e8a7-header-content {
	margin-bottom: 30px;
	flex-shrink: 0;
}

.srs-b822e8a7-subtitle {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.srs-b822e8a7-title {
	font-size: 32px;
	line-height: 1.2;
	font-weight: 700;
	margin-bottom: 15px;
	margin-top: 0;
}

@media (min-width: 768px) {
	.srs-b822e8a7-title {
		font-size: 40px;
	}
}

.srs-b822e8a7-description {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 0;
}

/* Slider */
.srs-b822e8a7-slider-container {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	background-color: #f3f4f6;
	flex-grow: 1; /* Take up remaining height in sticky wrapper */
	min-height: 300px; /* Fallback for smaller screens */
    height: 100%; /* Force height */
}

@media (max-width: 991px) {
	.srs-b822e8a7-slider-container {
		aspect-ratio: 4/3;
	}
}

.srs-b822e8a7-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
	z-index: 1;
}

.srs-b822e8a7-slide.active {
	opacity: 1;
	z-index: 2;
}

.srs-b822e8a7-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.srs-b822e8a7-slider-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 3;
}

.srs-b822e8a7-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background-color 0.3s, transform 0.3s;
}

.srs-b822e8a7-dot.active {
	background-color: #fff;
	transform: scale(1.2);
}

/* Timeline */
.srs-b822e8a7-timeline {
	position: relative;
	padding-left: 40px;
    padding-top: 0; /* Remove top padding to align with image */
    padding-bottom: 200px; /* Extra space at the bottom to scroll the last item */
}

.srs-b822e8a7-timeline-line {
	position: absolute;
	left: 15px;
	top: 0; /* Start line from very top */
	bottom: 0;
	width: 2px;
	opacity: 0.2;
}

.srs-b822e8a7-step {
	position: relative;
	margin-bottom: 40px; /* Reduced margin to fit better */
	opacity: 0.4;
	transition: opacity 0.5s ease, transform 0.5s ease;
	transform: translateY(20px);
}

.srs-b822e8a7-step.is-active {
	opacity: 1;
	transform: translateY(0);
}

.srs-b822e8a7-step:last-child {
	margin-bottom: 0;
}

.srs-b822e8a7-step-icon-wrapper {
	position: absolute;
	left: -40px;
	top: 0;
}

.srs-b822e8a7-step-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.srs-b822e8a7-step-icon i {
	font-size: 14px;
}

.srs-b822e8a7-step-icon svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.srs-b822e8a7-step-content {
	background: #fff;
	padding: 30px;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.02);
	transition: transform 0.3s, box-shadow 0.3s;
}

.srs-b822e8a7-step.is-active .srs-b822e8a7-step-content {
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.srs-b822e8a7-step-title {
	font-size: 20px;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 12px;
}

.srs-b822e8a7-step-description {
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}