.form-container {
	background: white;
	max-width: 100%;
	width: 100%;
	padding: 60px 40px;
	position: relative;
	overflow: hidden;
	min-height: 100vh;
}

.form-inner {
	max-width: 800px;
	margin: 0 auto;
}

.form-step {
	display: none;
	animation: fadeIn 0.5s ease-in;
}

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

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateX(20px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

h2 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 24px;
	color: #333;
}

.options-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	margin-bottom: 30px;
}

.options-grid.single-row {
	grid-template-columns: repeat(3, 1fr);
}

.option-card {
	background: #1e5a96;
	color: white;
	padding: 30px 20px;
	border-radius: 10px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 3px solid transparent;
}

.option-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(30, 90, 150, 0.3);
}

.option-card.selected {
	border-color: #ff6b35;
	background: #164570;
}

.option-icon {
	font-size: 48px;
	margin-bottom: 15px;
}

.option-text {
	font-size: 16px;
	font-weight: bold;
}

.input-group {
	margin-bottom: 25px;
}

.input-group label {
	display: block;
	margin-bottom: 10px;
	color: #333;
	font-weight: bold;
}

.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="tel"] {
	width: 100%;
	padding: 12px;
	border: 2px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	transition: border-color 0.3s;
}

.input-group input:focus {
	outline: none;
	border-color: #1e5a96;
}

.slider-container {
	margin: 30px 0;
}

.slider-value {
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	color: #1e5a96;
	margin-bottom: 20px;
}

input[type="range"] {
	width: 100%;
	height: 8px;
	border-radius: 5px;
	background: #ddd;
	outline: none;
	-webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: #ff6b35;
	cursor: pointer;
	border: 3px solid white;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

input[type="range"]::-moz-range-thumb {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: #ff6b35;
	cursor: pointer;
	border: 3px solid white;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.slider-labels {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	color: #666;
}

.checkbox-group {
	margin: 20px 0;
}

.checkbox-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.checkbox-item input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin-right: 10px;
	cursor: pointer;
	flex-shrink: 0;
}

.checkbox-item label {
	font-size: 14px;
	color: #333;
	cursor: pointer;
	line-height: 1.4;
}

.checkbox-item a {
	color: #1e5a96;
	text-decoration: none;
	font-weight: bold;
}

.button-group {
	display: flex;
	gap: 10px;
	margin-top: 30px;
}

button {
	flex: 1;
	padding: 15px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-continue {
	background: #ff6b35;
	color: white;
}

.btn-continue:hover {
	background: #e55a25;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-back {
	background: #ff6b35;
	color: white;
}

.btn-back:hover {
	background: #e55a25;
}

.btn-submit {
	background: #ff6b35;
	color: white;
	width: 100%;
}

.btn-submit:hover {
	background: #e55a25;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-continue:disabled,
.btn-submit:disabled {
	background: #ccc;
	cursor: not-allowed;
	transform: none;
}

.progress-steps {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
	padding: 0 20px;
}

.step-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	position: relative;
}

.step-number {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: white;
	border: 3px solid #e0e0e0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: bold;
	color: #999;
	margin-bottom: 10px;
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
}

.step-item.active .step-number {
	background: #1e5a96;
	border-color: #1e5a96;
	color: white;
}

.step-item.completed .step-number {
	background: #1e5a96;
	border-color: #1e5a96;
	color: white;
}

.step-label {
	font-size: 12px;
	color: #999;
	text-align: center;
	transition: color 0.3s ease;
}

.step-item.active .step-label {
	color: #1e5a96;
	font-weight: bold;
}

.step-item.completed .step-label {
	color: #1e5a96;
}

.step-connector {
	position: absolute;
	top: 25px;
	left: 50%;
	width: 100%;
	height: 3px;
	background: #e0e0e0;
	z-index: 1;
}

.step-item:last-child .step-connector {
	display: none;
}

.step-item.completed .step-connector {
	background: #1e5a96;
}

@media (max-width: 600px) {
	.step-label {
		font-size: 10px;
	}

	.step-number {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	.step-connector {
		top: 20px;
	}
}

.contact-icon {
	width: 40px;
	height: 40px;
	background: #ccc;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: white;
}

.input-with-icon {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-bottom: 15px;
}

.input-with-icon input {
	flex: 1;
}

@media (max-width: 600px) {
	.options-grid {
		grid-template-columns: 1fr;
	}

	.options-grid.single-row {
		grid-template-columns: 1fr;
	}
}
