.mqf-container {
	max-width: 500px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.08);
	padding: 40px;
	font-family: sans-serif;
	box-sizing: border-box;
}

.mqf-header {
	text-align: center;
	margin-bottom: 30px;
}

.mqf-title {
	font-size: 28px;
	font-weight: bold;
	margin: 0 0 10px;
	color: #111;
}

.mqf-subtitle {
	color: #666;
	margin-bottom: 20px;
}

.mqf-discount {
	background: rgba(21, 101, 249, 0.1);
	padding: 10px;
	border-radius: 8px;
	font-weight: bold;
	display: inline-block;
	margin-bottom: 10px;
}

.mqf-rut {
	font-size: 14px;
	color: #555;
}

.mqf-progress {
	display: flex;
	justify-content: space-between;
	border-bottom: 2px solid #eee;
	margin-bottom: 30px;
}

.mqf-step {
	padding-bottom: 10px;
	color: #aaa;
	font-weight: bold;
	transition: all 0.3s ease;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
}

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

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

.mqf-section-title {
	font-size: 20px;
	margin-bottom: 20px;
	color: #333;
}

.mqf-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-bottom: 20px;
}

.mqf-card {
	border: 1px solid #ddd;
	border-radius: 12px;
	padding: 20px 10px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.mqf-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.mqf-field-group {
	margin-bottom: 15px;
}

.mqf-field-group label {
	display: block;
	margin-bottom: 5px;
	font-size: 14px;
	color: #444;
}

.mqf-input {
	width: 100%;
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 10px;
	font-size: 16px;
	box-sizing: border-box;
	transition: all 0.3s ease;
	outline: none;
	margin-bottom: 15px;
	height: 52px; /* Fix height for inputs and selects to perfectly align */
}
select.mqf-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    padding-right: 40px;
}
textarea.mqf-input {
    height: auto;
    min-height: 100px;
}

.mqf-row {
	display: flex;
	gap: 15px;
}

.mqf-col {
	flex: 1;
}

.mqf-services {
	max-height: 200px;
	overflow-y: auto;
	padding-right: 10px;
	margin-bottom: 20px;
}

.mqf-services label {
	display: block;
	margin-bottom: 10px;
	padding: 10px;
	background: #f9f9f9;
	border-radius: 8px;
	cursor: pointer;
}

.mqf-actions {
	display: flex;
	justify-content: flex-end;
	gap: 15px;
	margin-top: 20px;
}

.mqf-btn {
	padding: 15px 30px;
	border: none;
	border-radius: 30px;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
}

.mqf-btn:hover {
	transform: scale(1.05);
}

.mqf-btn-outline {
	background: transparent !important;
	color: #666;
	border: 1px solid #ddd;
}

.mqf-btn-outline:hover {
	background: #f5f5f5 !important;
	color: #333;
}

.mqf-consent {
	font-size: 12px;
	color: #666;
	display: block;
	margin-bottom: 20px;
}

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

@media (max-width: 768px) {
	.mqf-container {
		padding: 20px;
		border-radius: 15px;
	}
	.mqf-cards {
		grid-template-columns: 1fr;
	}
	.mqf-row {
		flex-direction: column;
		gap: 0;
	}
}