.container {
	width: 100%;
	max-width: 1200px;
	background: white;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: calc(100vh - 20px);
	max-height: 900px;
}

.head {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 25px 40px;
	text-align: center;
}

.head h1 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 6px;
}

.head p {
	font-size: 15px;
	opacity: 0.9;
}

.main-content {
	flex: 1;
	display: flex;
	overflow: hidden;
}

.sidebar {
	width: 280px;
	background: #f8f9ff;
	padding: 25px;
	border-right: 1px solid #e9ecef;
}

.process-guide {
	background: white;
	padding: 18px;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(102, 126, 234, 0.1);
}

.process-guide h4 {
	color: #667eea;
	margin-bottom: 18px;
	font-size: 17px;
	font-weight: 600;
	text-align: center;
}

.process-steps {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.process-step {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	opacity: 0.6;
	transition: opacity 0.3s ease;
}

.process-step.active {
	opacity: 1;
}

.process-step.active .process-number {
	background: #667eea;
	color: white;
	transform: scale(1.1);
}

.process-step.completed .process-number {
	background: #4CAF50;
	color: white;
	font-size: 0;
}

.process-step.completed .process-number::before {
	content: "✓";
	position: absolute;
	font-size: 16px;
	color: white;
	font-weight: bold;
	line-height: 32px;
	width: 32px;
	text-align: center;
}

.process-number {
	width: 32px;
	height: 32px;
	background: #e9ecef;
	color: #adb5bd;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	flex-shrink: 0;
	position: relative;
	transition: all 0.3s ease;
}

.process-content h5 {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 4px;
	color: #333;
}

.process-content p {
	font-size: 13px;
	color: #666;
	line-height: 1.4;
	margin: 0;
}

.contact-badge {
	background: #fff;
	border: 2px solid #667eea;
	color: #333;
	padding: 15px;
	border-radius: 12px;
	margin-top: 15px;
	text-align: center;
}

.contact-badge strong {
	display: block;
	font-size: 13px;
	margin-bottom: 6px;
	color: #667eea;
}

.contact-badge p {
	font-size: 12px;
	margin: 3px 0;
	color: #666;
}

.contact-badge .phone {
	font-size: 18px;
	font-weight: 700;
	color: #667eea;
	margin-top: 6px;
}

.form-area {
	flex: 1;
	padding: 25px 35px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}

.step-indicator {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
	gap: 40px;
}

.step {
	display: flex;
	align-items: center;
}

.step-number {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	margin-right: 10px;
	transition: all 0.3s ease;
	font-size: 16px;
}

.step.active .step-number {
	background: #667eea;
	color: white;
}

.step.inactive .step-number {
	background: #e9ecef;
	color: #adb5bd;
}

.step-label {
	font-size: 14px;
	color: #666;
	font-weight: 500;
}

.step.active .step-label {
	color: #333;
	font-weight: 600;
}

.form-section {
	display: none;
	flex: 1;
}

.form-section.active {
	display: flex;
	flex-direction: column;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	flex: 1;
	align-items: stretch;
}

.form-group {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.form-group label {
	font-weight: 600;
	margin-bottom: 12px;
	font-size: 15px;
	color: #333;
	flex-shrink: 0;
}

.options-container {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
	justify-content: space-between;
}

.option {
	padding: 13px;
	border: 2px solid #e9ecef;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 500;
	font-size: 14px;
	flex: 1;
	min-height: 48px;
}

.option:hover {
	border-color: #667eea;
	background: #f8f9ff;
}

.option.selected {
	border-color: #667eea;
	background: #667eea;
	color: white;
}

.grade-option {
	flex-direction: column;
	padding: 12px;
	min-height: 56px;
}

.grade-option h3 {
	font-size: 15px;
	margin-bottom: 2px;
	font-weight: 600;
}

.grade-option p {
	font-size: 11px;
	opacity: 0.8;
	margin: 0;
}

/* Step 2 스타일 */
.form-inputs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	flex: 1;
}

.input-group {
	display: flex;
	flex-direction: column;
}

.input-group label {
	font-weight: 600;
	margin-bottom: 8px;
	font-size: 14px;
	color: #333;
}

.input-group input, .input-group select {
	padding: 12px 15px;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	font-size: 15px;
	transition: all 0.3s ease;
	height: auto;
	line-height: 160%;
	text-indent: unset;
}
.input-group select {
	padding: 14px 15px;
}

.input-group input:focus, .input-group select:focus {
	outline: none;
	border-color: #667eea;
	background: #f8f9ff;
}

.input-group.region {
	grid-column: span 2;
}

.button-group {
	display: flex;
	gap: 15px;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #e9ecef;
}

.btn_p {
	flex: 1;
	padding: 15px 20px;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-prev {
	background: #e9ecef;
	color: #666;
	max-width: 150px;
}

.btn-prev:hover {
	background: #dee2e6;
}

.btn-next, .btn-submit {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.btn-next:hover, .btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.error-message {
	color: #dc3545;
	font-size: 12px;
	margin-top: 5px;
	display: none;
}

@media (max-width: 1024px) {
	.container {
		max-height: none;
		height: auto;
	}

	.main-content {
		flex-direction: column;
	}

	.sidebar {
		width: 100%;
		border-right: none;
		border-bottom: 1px solid #e9ecef;
		padding: 20px;
	}

	.form-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.form-group {
		height: auto;
	}

	.form-inputs {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.input-group.region {
		grid-column: span 1;
	}
}

@media (max-width: 768px) {
	.header {
		padding: 20px;
	}

	.header h1 {
		font-size: 24px;
	}

	.form-area {
		padding: 20px;
	}

	.step-indicator {
		gap: 20px;
	}

	.options-container {
		gap: 10px;
	}

	.process-step {
		align-items: center;
	}

	.process-number {
		width: 28px;
		height: 28px;
		font-size: 12px;
	}

	.process-content h5 {
		font-size: 14px;
	}

	.process-info {
		background: #f0f4ff;
		padding: 12px 15px;
		border-radius: 8px;
		border-left: 3px solid #667eea;
	}

	.process-info p {
		font-size: 12px;
		color: #667eea;
		line-height: 1.5;
		margin: 0;
		font-weight: 500;
	}

	#process-step-4 {
		margin-top: 15px;
		padding-top: 15px;
		border-top: 1px solid #e9ecef;
		opacity: 1;
	}
}