.ce-container-5079 {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	overflow: hidden;
}

.ce-col {
	flex: 1;
	min-width: 300px;
	padding: 40px;
}

.ce-left-col {
	background: #f8f9fa;
	border-right: 1px solid #eee;
}

.ce-tabs {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ce-tab {
	padding: 15px 20px;
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 15px;
	font-weight: 600;
	color: #333;
	border-left: 4px solid transparent;
	transition: all 0.3s ease;
	background: #fff;
	box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.ce-tab:hover {
	transform: translateX(5px);
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.ce-tab.active {
	border-left-color: #007bff;
	color: #007bff;
}

.ce-tab i, .ce-tab svg {
	font-size: 1.2em;
	width: 1.2em;
	height: 1.2em;
	transition: fill 0.3s ease, color 0.3s ease;
}

.ce-tab.active svg {
	fill: #007bff;
}

.ce-center-col {
	position: relative;
	overflow: hidden;
	background: #fdfdfd;
	transition: background-color 0.5s ease;
}

.ce-content-panel {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 40px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.4s ease;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ce-content-panel.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	position: relative;
}

.ce-content-panel h3 {
	margin-top: 0;
	font-size: 2em;
	margin-bottom: 15px;
}

.ce-parallax-shape {
	position: absolute;
	right: -20px;
	bottom: -20px;
	width: 150px;
	height: 150px;
	background: linear-gradient(135deg, rgba(0,123,255,0.1), rgba(0,123,255,0.05));
	border-radius: 50%;
	z-index: 0;
	transition: transform 0.1s ease-out;
}

.ce-right-col {
	background: #fff;
}

.ce-form-funnel {
	position: relative;
}

.ce-step-indicator {
	font-size: 0.9em;
	color: #777;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.ce-form-step {
	display: none;
	animation: fadeIn 0.4s ease forwards;
}

.ce-form-step.active {
	display: block;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateX(10px); }
	to { opacity: 1; transform: translateX(0); }
}

.ce-form-heading-panel {
	display: none;
}

.ce-form-heading-panel.active {
	display: block;
}

.ce-form-heading-panel h4 {
	margin-top: 0;
	margin-bottom: 10px;
}

.ce-lead-form input {
	width: 100%;
	padding: 12px 15px;
	margin-bottom: 15px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 1em;
}

.ce-form-actions {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}

button.ce-next-step, button.ce-prev-step, button.ce-reset-form {
	padding: 12px 25px;
	border: none;
	border-radius: 6px;
	background: #007bff;
	color: #fff;
	cursor: pointer;
	font-weight: 600;
	transition: background 0.3s ease;
}

button.ce-prev-step {
	background: #f1f1f1;
	color: #333;
}

button.ce-next-step:hover, button.ce-reset-form:hover {
	background: #0056b3;
}

button.ce-prev-step:hover {
	background: #e2e2e2;
}

@media (max-width: 991px) {
	.ce-col {
		min-width: 100%;
		border-right: none;
		border-bottom: 1px solid #eee;
	}
	.ce-tabs {
		flex-direction: row;
		overflow-x: auto;
		padding-bottom: 10px;
	}
	.ce-tab {
		white-space: nowrap;
		border-left: none;
		border-bottom: 4px solid transparent;
	}
	.ce-tab.active {
		border-bottom-color: #007bff;
		border-left-color: transparent;
	}
	.ce-parallax-shape {
		display: none;
	}
}