.feature-icon {
	color: #0d6efd;
}

.step-number {
	width: 40px;
	height: 40px;
	background-color: #0d6efd;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	font-weight: bold;
}

.timeline {
	position: relative;
}

.timeline::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 2px;
	height: 100%;
	background: var(--bs-border-color);
	transform: translateX(-50%);
}

.card {
	transition: transform 0.2s;
	border: 1px solid var(--bs-border-color);
}

.card:hover {
	transform: translateY(-5px);
}

.card-title {
	color: var(--bs-body-color);
}

.card-text {
	color: var(--bs-body-color);
}

.video-container {
	position: relative;
	display: inline-block;
	max-width: 80%;
	margin: 0 auto;
	width: 100%;
}

.video-loading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
}

video {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}