.megatech-quiz-container {
	max-width: 600px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.08);
	padding: 32px;
	font-family: system-ui, -apple-system, sans-serif;
	color: #333;
}

.mq-step {
	display: none;
	animation: mqFadeIn 0.3s ease-in-out;
}

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

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

.megatech-quiz-container h2, .megatech-quiz-container h3 {
	margin-top: 0;
	margin-bottom: 16px;
	color: #111;
}

.megatech-quiz-container p {
	line-height: 1.6;
	margin-bottom: 24px;
	color: #555;
}

.mq-btn {
	background: #0056b3;
	color: #fff;
	border: none;
	padding: 14px 24px;
	font-size: 16px;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	width: 100%;
	transition: background 0.2s;
}

.mq-btn:hover {
	background: #004494;
}

/* Quiz Options */
.mq-question-block {
	display: none;
}
.mq-question-block.mq-active {
	display: block;
}

.mq-question-text {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 20px;
}

.mq-option {
	display: block;
	width: 100%;
	text-align: left;
	padding: 16px;
	margin-bottom: 12px;
	background: #f8f9fa;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.2s;
}

.mq-option:hover {
	background: #e2e6ea;
	border-color: #dae0e5;
}

.mq-progress-bar {
	height: 8px;
	background: #e9ecef;
	border-radius: 4px;
	margin-bottom: 24px;
	overflow: hidden;
}

.mq-progress-fill {
	height: 100%;
	background: #0056b3;
	width: 0%;
	transition: width 0.3s ease;
}

/* Form Styles */
.mq-form-group {
	margin-bottom: 16px;
}

.mq-form-group label {
	display: block;
	font-weight: 500;
	margin-bottom: 8px;
	font-size: 14px;
}

.mq-form-group input[type="text"],
.mq-form-group input[type="tel"],
.mq-form-group input[type="email"],
.mq-form-group select {
	width: 100%;
	padding: 12px;
	border: 1px solid #ced4da;
	border-radius: 6px;
	font-size: 15px;
	box-sizing: border-box;
}

.mq-checkbox-group label {
	font-weight: normal;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.mq-checkbox-group input {
	margin-top: 4px;
}

.mq-error-msg {
	color: #dc3545;
	margin-top: 12px;
	font-size: 14px;
	text-align: center;
}