.leadgen-form-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}

.leadgen-progress-bar {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
	position: relative;
}

.leadgen-progress-bar::before {
	content: '';
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	height: 2px;
	background: #ddd;
	z-index: 0;
}

.leadgen-progress-step {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #ddd;
	color: #666;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
	font-weight: bold;
}

.leadgen-progress-step.active {
	background: #0073aa;
	color: #fff;
}

.leadgen-form-step h2 {
	margin-bottom: 20px;
}

.leadgen-categories-list,
.leadgen-services-list,
.leadgen-parameters-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 15px;
	margin-bottom: 20px;
}

.leadgen-category-item,
.leadgen-service-item,
.leadgen-parameter-item {
	padding: 20px;
	border: 2px solid #ddd;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s;
	text-align: center;
}

.leadgen-category-item:hover,
.leadgen-service-item:hover,
.leadgen-parameter-item:hover {
	border-color: #0073aa;
	background: #f0f8ff;
}

.leadgen-category-item h3,
.leadgen-service-item h3,
.leadgen-parameter-item h3 {
	margin: 0 0 10px 0;
}

.leadgen-parameter-item .price {
	font-size: 18px;
	font-weight: bold;
	color: #0073aa;
	margin: 10px 0;
}

.leadgen-parameter-item .description {
	font-size: 14px;
	color: #666;
	margin: 10px 0 0 0;
}

.leadgen-form-field {
	margin-bottom: 20px;
}

.leadgen-form-field label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}

.leadgen-form-field input {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
}

.leadgen-btn {
	padding: 12px 24px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	margin-right: 10px;
}

.leadgen-btn-primary {
	background: #0073aa;
	color: #fff;
}

.leadgen-btn-primary:hover {
	background: #005177;
}

.leadgen-btn-secondary {
	background: #666;
	color: #fff;
}

.leadgen-btn-secondary:hover {
	background: #444;
}

.leadgen-thank-you {
	max-width: 600px;
	margin: 50px auto;
	text-align: center;
	padding: 40px;
	background: #f9f9f9;
	border-radius: 8px;
}

.leadgen-thank-you h1 {
	color: #0073aa;
	margin-bottom: 20px;
}

