.step-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: none;
	border-radius: 15px;
	overflow: hidden;
}

.step-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.step-image {
	width: 100%;
	height: auto;
	background: none;
	display: block;
	border-radius: 15px;
	overflow: hidden;
	border: 2px solid #e9ecef;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.step-image img {
	width: 100%;
	height: auto;
	border-radius: 13px;
}

.step-content {
	position: relative;
	padding: 25px;
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 15px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	height: 100%;
}

.step-header {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.step-number {
	position: static;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 18px;
	margin-right: 15px;
	flex-shrink: 0;
}

.step-title {
	color: #333;
	font-weight: 600;
	margin: 0;
	flex: 1;
}

.step-description {
	color: #666;
	line-height: 1.6;
}

.hero-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 40px 0;
	margin-bottom: 40px;
}

.hero-section h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.hero-section p {
	font-size: 1.2rem;
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
}

.hero-block {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	padding: 20px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-block p {
	font-size: 1rem;
	margin: 0;
	opacity: 0.9;
}

.cta-section {
	background: #f8f9fa;
	padding: 60px 0;
	margin-top: 60px;
}

.btn-gradient {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: none;
	color: white;
	padding: 12px 30px;
	border-radius: 25px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.btn-gradient:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
	color: white;
}

@media (max-width: 768px) {
	.step-image {
		width: 100%;
		max-width: 300px;
		margin-bottom: 20px;
	}

	.step-content {
		margin-top: 20px;
	}

	.flex-row-reverse {
		flex-direction: column !important;
	}

	.align-items-start {
		flex-direction: column;
	}
}
