.material-footer-0d42ec7c {
	background-color: #2b395b;
	color: #ffffff;
	font-family: 'Inter', 'Roboto', sans-serif;
	padding: 64px 24px 32px;
	position: relative;
}

.material-footer-0d42ec7c * {
	box-sizing: border-box;
}

.mf-container {
	max-width: 1280px;
	margin: 0 auto;
}

.mf-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr) 320px;
	gap: 32px;
	margin-bottom: 64px;
}

.mf-title {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 16px 0;
	color: #ffffff;
}

.mf-title.mt-24 {
	margin-top: 24px;
}

.mf-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mf-list li {
	margin-bottom: 12px;
}

.mf-list a {
	color: #a0aabf;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.5;
	transition: color 0.2s ease;
}

.mf-list a:hover {
	color: #ffffff;
}

/* Quote Card */
.mf-quote-card {
	background-color: #c44d36;
	border-radius: 16px;
	padding: 32px 24px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
	margin-top: -96px; /* Pull up to overlap */
	z-index: 10;
	position: relative;
}

.mf-quote-title {
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	margin: 0 0 24px 0;
}

.mf-quote-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	font-size: 14px;
	margin-bottom: 24px;
}

.mf-input-group {
	margin-bottom: 16px;
}

.mf-pill-input {
	width: 100%;
	padding: 16px 24px;
	border-radius: 999px;
	border: none;
	font-size: 16px;
	background: #ffffff;
	outline: none;
}

.mf-btn-primary {
	width: 100%;
	padding: 16px;
	border-radius: 999px;
	border: none;
	background-color: #3b71ca;
	color: #ffffff;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.mf-btn-primary:hover {
	background-color: #2b5cb0;
	transform: scale(1.02);
}

/* Bottom Section */
.mf-bottom-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	padding-bottom: 32px;
	margin-bottom: 32px;
}

.mf-search-social {
	display: flex;
	align-items: center;
	gap: 48px;
	width: 100%;
}

.mf-search-bar {
	display: flex;
	position: relative;
	width: 400px;
}

.mf-search-input {
	padding-right: 64px;
}

.mf-btn-go {
	position: absolute;
	right: 4px;
	top: 4px;
	bottom: 4px;
	border-radius: 999px;
	border: none;
	background: #a0aabf;
	color: #2b395b;
	padding: 0 24px;
	font-weight: 700;
	cursor: pointer;
}

.mf-social-icons {
	display: flex;
	gap: 16px;
}

.mf-icon-placeholder {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #3b71ca;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
}

/* Trust Section */
.mf-trust-section {
	background-color: #232f4c;
	margin: 0 -24px -32px;
	padding: 32px 24px;
}

.mf-trust-title {
	max-width: 1280px;
	margin: 0 auto 24px;
	font-size: 16px;
	font-weight: 400;
}

.mf-trust-badges {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.mf-trust-badge {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.mf-stars {
	color: #ff9800;
	font-size: 20px;
}

.mf-score {
	font-size: 20px;
	font-weight: 700;
}

.mf-platform {
	font-size: 12px;
	color: #a0aabf;
	text-transform: uppercase;
}

/* Floating Help */
.mf-floating-help {
	position: fixed;
	bottom: 24px;
	right: 24px;
	padding: 12px 24px;
	border-radius: 999px;
	background: #3b71ca;
	color: #fff;
	border: none;
	font-weight: 700;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	cursor: pointer;
	z-index: 100;
}

@media (max-width: 1024px) {
	.mf-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.mf-quote-card {
		grid-column: 1 / -1;
		margin-top: 0;
	}
	.mf-bottom-section {
		flex-direction: column;
		gap: 24px;
	}
	.mf-search-social {
		flex-direction: column;
	}
	.mf-trust-badges {
		flex-wrap: wrap;
		gap: 24px;
	}
}