.rt-container-93f74ab7 {
	background-color: #000;
	padding: 40px 20px;
	overflow: hidden;
}

.rt-timeline-93f74ab7 {
	display: flex;
	flex-direction: column;
	gap: 120px;
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
}

.rt-timeline-93f74ab7::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 1px;
	background-color: rgba(255, 255, 255, 0.08);
	transform: translateX(-50%);
	z-index: 1;
}

.rt-item-93f74ab7 {
	display: grid;
	grid-template-columns: 1fr 60px 1fr;
	align-items: center;
	position: relative;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.rt-item-93f74ab7.rt-in-view-93f74ab7 {
	opacity: 1;
	transform: translateY(0);
}

.rt-col-93f74ab7 {
	width: 100%;
}

.rt-col-left-93f74ab7 {
	text-align: right;
	padding-right: 40px;
	display: flex;
	justify-content: flex-end;
}

.rt-col-right-93f74ab7 {
	text-align: left;
	padding-left: 40px;
	display: flex;
	justify-content: flex-start;
}

/* Added for independent width control per item */
.rt-content-inner-93f74ab7 {
	width: 100%;
}

/* Reverse alignments */
.rt-reverse-93f74ab7 .rt-col-left-93f74ab7 {
	text-align: right;
}
.rt-reverse-93f74ab7 .rt-col-right-93f74ab7 {
	text-align: left;
}

.rt-node-container-93f74ab7 {
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
}

.rt-node-93f74ab7 {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ffd500;
	box-shadow: 0 0 0 8px rgba(255, 213, 0, 0.12);
}

.rt-phase-93f74ab7 {
	color: #ffd500;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 8px;
}

.rt-title-93f74ab7 {
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 52px;
	margin: 0;
	line-height: 1.1;
}

.rt-bullets-93f74ab7 {
	color: #fff;
}

.rt-bullets-93f74ab7 ul {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 24px;
	line-height: 1.8;
}

.rt-bullets-93f74ab7 ul li {
	position: relative;
	margin-bottom: 12px;
}

.rt-col-left-93f74ab7 .rt-bullets-93f74ab7 ul li {
	padding-right: 24px;
}
.rt-col-left-93f74ab7 .rt-bullets-93f74ab7 ul li::after {
	content: '→';
	position: absolute;
	right: 0;
	top: 0;
	color: #ffd500;
	opacity: 0.6;
}

.rt-col-right-93f74ab7 .rt-bullets-93f74ab7 ul li {
	padding-left: 24px;
}
.rt-col-right-93f74ab7 .rt-bullets-93f74ab7 ul li::before {
	content: '→';
	position: absolute;
	left: 0;
	top: 0;
	color: #ffd500;
	opacity: 0.6;
}

@media (max-width: 1024px) {
	.rt-timeline-93f74ab7 {
		gap: 80px;
	}
	.rt-title-93f74ab7 {
		font-size: 38px;
	}
}

@media (max-width: 767px) {
	.rt-timeline-93f74ab7 {
		gap: 60px;
	}
	
	/* Perfect Mobile Alignment Fix */
	.rt-timeline-93f74ab7::before {
		left: 20px; /* Aligned exactly with node center */
		transform: translateX(-50%);
	}
	
	.rt-item-93f74ab7 {
		grid-template-columns: 40px 1fr;
		align-items: stretch; /* Stretch to allow node to stay top-aligned accurately */
	}
	
	.rt-item-93f74ab7 .rt-node-container-93f74ab7 {
		grid-column: 1 / 2;
		grid-row: 1 / 3;
		justify-content: center;
		align-items: flex-start; /* Align node to top of item */
		padding-top: 8px; /* Adjust node vertical position */
		width: 40px; /* Fixed width to match column */
	}
	
	.rt-item-93f74ab7 .rt-col-left-93f74ab7,
	.rt-item-93f74ab7 .rt-col-right-93f74ab7 {
		grid-column: 2 / 3;
		text-align: left;
		padding: 0; /* Reset inline padding applied by JS/controls */
		padding-left: 15px; /* Consistent spacing from line */
		width: 100%;
		justify-content: flex-start;
		transform: none !important; /* Override offset control on mobile */
	}

	.rt-item-93f74ab7 .rt-content-inner-93f74ab7 {
		width: 100% !important; /* Override width control on mobile */
	}
	
	/* Ensure stacking order is logical and spacing is tight */
	.rt-item-93f74ab7.rt-reverse-93f74ab7 .rt-col-left-93f74ab7 {
		grid-row: 2;
		margin-top: 15px;
	}
	.rt-item-93f74ab7.rt-reverse-93f74ab7 .rt-col-right-93f74ab7 {
		grid-row: 1;
	}
	
	.rt-item-93f74ab7:not(.rt-reverse-93f74ab7) .rt-col-left-93f74ab7 {
		grid-row: 1;
	}
	.rt-item-93f74ab7:not(.rt-reverse-93f74ab7) .rt-col-right-93f74ab7 {
		grid-row: 2;
		margin-top: 15px;
	}

	.rt-title-93f74ab7 {
		font-size: 32px;
	}
	
	.rt-bullets-93f74ab7 ul {
		font-size: 18px;
	}
	
	.rt-col-left-93f74ab7 .rt-bullets-93f74ab7 ul li,
	.rt-col-right-93f74ab7 .rt-bullets-93f74ab7 ul li {
		padding-left: 24px;
		padding-right: 0;
	}
	
	.rt-col-left-93f74ab7 .rt-bullets-93f74ab7 ul li::before,
	.rt-col-right-93f74ab7 .rt-bullets-93f74ab7 ul li::before {
		content: '→';
		position: absolute;
		left: 0;
		top: 0;
		color: #ffd500;
		opacity: 0.6;
	}
	
	.rt-col-left-93f74ab7 .rt-bullets-93f74ab7 ul li::after {
		display: none;
	}
}
