.dp-wrapper {
	background-color: #ffffff;
	border-radius: 24px;
	padding: 60px 40px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0,0,0,0.03);
	max-width: 900px;
	margin: 0 auto;
}

.dp-header {
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.dp-title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 16px;
	color: #000;
}

.dp-desc {
	font-size: 16px;
	color: #555;
	line-height: 1.6;
	margin-bottom: 0;
}

.dp-steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}

.dp-step-card {
	background-color: #f9fafc;
	border-radius: 16px;
	padding: 30px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.dp-step-icon-wrap {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.dp-step-icon-wrap i {
	font-size: 20px;
}
.dp-step-icon-wrap svg {
	width: 20px;
	height: 20px;
}

.dp-step-title {
	font-size: 18px;
	font-weight: 700;
	color: #000;
	margin-bottom: 8px;
}

.dp-step-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	margin-bottom: 0;
}

.dp-action-wrap {
	margin-top: 20px;
}

.dp-btn {
	display: inline-block;
	background-color: #000;
	color: #fff;
	padding: 16px 40px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	transition: opacity 0.2s;
}

.dp-btn:hover {
	opacity: 0.8;
	color: #fff;
}

@media (max-width: 768px) {
	.dp-steps-grid {
		grid-template-columns: 1fr;
	}
	
	.dp-wrapper {
		padding: 40px 20px;
	}
}
