.container_div {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

.header_div {
	text-align: center;
	margin-bottom: 50px;
}

.header_div h1 {
	font-size: 32px;
	color: #2c3e50;
	margin-bottom: 10px;
	position: relative;
	display: inline-block;
}

.header_div h1::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(to right, #3498db, #2ecc71);
}

.steps-section {
	background: white;
	border-radius: 15px;
	padding: 40px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	margin-bottom: 40px;
}

.steps-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 30px;
}

.step-card {
	text-align: center;
	padding: 30px 20px;
	background: #f8f9fa;
	border-radius: 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 2px solid transparent;
}

.step-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	border-color: #3498db;
}

.step-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, #3498db, #2ecc71);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	color: white;
}

.step-number {
	font-size: 18px;
	font-weight: bold;
	color: #3498db;
	margin-bottom: 10px;
}

.step-title {
	font-size: 20px;
	font-weight: bold;
	color: #2c3e50;
	margin-bottom: 15px;
}

.step-description {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
}

.info-section {
	background: white;
	border-radius: 15px;
	padding: 40px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-header {
	font-size: 24px;
	font-weight: bold;
	color: #2c3e50;
	margin-bottom: 20px;
	text-align: center;
}

.info-list {
	list-style: none;
	padding: 0;
	margin-top: 30px;
}

.info-list li {
	padding: 20px;
	margin-bottom: 15px;
	background: #f8f9fa;
	border-radius: 10px;
	border-left: 4px solid #3498db;
	position: relative;
	padding-left: 50px;
}

.info-list li::before {
	content: attr(data-number);
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background: #3498db;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
}

.info-list li:nth-child(1) { border-left-color: #2ecc71; }
.info-list li:nth-child(1)::before { background: #2ecc71; }
.info-list li:nth-child(2) { border-left-color: #f39c12; }
.info-list li:nth-child(2)::before { background: #f39c12; }
.info-list li:nth-child(3) { border-left-color: #e74c3c; }
.info-list li:nth-child(3)::before { background: #e74c3c; }

@media (max-width: 768px) {
	.header_div h1 {
		font-size: 24px;
	}

	.steps-container {
		grid-template-columns: 1fr;
	}

	.info-list li {
		padding-left: 50px;
		font-size: 14px;
	}
}