.ai-process-container-8225 {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}

.ai-process-headline {
	text-align: center;
	margin-bottom: 20px;
	font-weight: 700;
}

.ai-process-intro {
	text-align: center;
	margin-bottom: 40px;
	line-height: 1.6;
}

.ai-process-steps-wrapper {
	display: flex;
	flex-direction: column;
	gap: 30px;
	position: relative;
}

.ai-process-steps-wrapper::before {
	content: '';
	position: absolute;
	left: 24px;
	top: 0;
	bottom: 0;
	width: 2px;
	background-color: #EBF0F2; /* Secondary color for line */
	z-index: 0;
}

.ai-process-step {
	display: flex;
	gap: 20px;
	position: relative;
	z-index: 1;
}

.ai-process-step-number {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 20px;
	flex-shrink: 0;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.ai-process-step-content {
	flex-grow: 1;
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	border-left: 4px solid #BBA364; /* Accent color */
}

.ai-process-step-title {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 1.2em;
}

.ai-process-step-desc {
	line-height: 1.5;
	margin: 0;
}

@media (max-width: 768px) {
	.ai-process-steps-wrapper::before {
		left: 20px;
	}
	.ai-process-step-number {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
}