html {
	scroll-behavior: smooth;
}

.mp-intro p {
	font-size: 18px;
	line-height: 1.6;
	color: #333333;
	margin: 0 0 24px 0;
	font-family: 'Poppins', sans-serif;
}

.mp-card {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	padding: 40px;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	gap: 40px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mp-card-reverse {
	flex-direction: row-reverse;
}

.mp-card-image {
	flex-shrink: 0;
	width: 280px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.mp-card-image img {
	width: 100%;
	max-width: 260px;
	height: auto;
}

.mp-card-content {
	flex: 1;
}

.mp-badge {
	display: inline-block;
	background: #fef3e6;
	color: #d97706;
	font-size: 12px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 20px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-bottom: 14px;
	font-family: 'Montserrat', sans-serif;
}

.mp-badge.otp {
	background: #e6f4ff;
	color: #0369a1;
}

.mp-badge.other {
	background: #f0e6ff;
	color: #6d28d9;
}

.mp-card-title {
	font-size: 26px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 16px;
	line-height: 1.3;
	font-family: 'Montserrat', sans-serif;
}

.mp-card-text {
	font-size: 16px;
	line-height: 1.7;
	color: #4a4a4a;
	margin: 0 0 20px;
	font-family: 'Poppins', sans-serif;
}

.mp-card-text strong {
	color: #1a1a1a;
	font-weight: 600;
}

.mp-highlight {
	background: linear-gradient(120deg, #fef9c3 0%, #fef9c3 100%);
	background-repeat: no-repeat;
	background-size: 100% 40%;
	background-position: 0 88%;
	padding: 0 3px;
	font-weight: 600;
	color: #1a1a1a;
}

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

.mp-info-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 15px;
	color: #4a4a4a;
	padding: 8px 0;
	font-family: 'Poppins', sans-serif;
}

.mp-info-list li::before {
	content: "✓";
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	background: #10b981;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: bold;
	margin-top: 1px;
}

.mp-tip {
	margin-top: 20px;
	padding: 14px 18px;
	background: #f8fafc;
	border-left: 4px solid #f59e0b;
	border-radius: 6px;
	font-size: 14px;
	color: #475569;
	line-height: 1.6;
	font-family: 'Poppins', sans-serif;
}

.mp-note {
	margin-top: 20px;
	padding: 14px 18px;
	background: #f8fafc;
	border-left: 4px solid #ff6666;
	border-radius: 6px;
	font-size: 14px;
	color: #475569;
	line-height: 1.6;
	font-family: 'Poppins', sans-serif;
}

.mp-tip strong {
	color: #1a1a1a;
}

.mp-cta {
	text-align: center;
	background: #ffffff;
	border-radius: 16px;
	padding: 40px 30px;
	margin-top: 20px;
	margin-bottom: 40px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.mp-cta h3 {
	font-size: 22px;
	font-weight: 600;
	margin: 0 0 10px;
	color: #1a1a1a;
}

.mp-cta p {
	font-size: 15px;
	color: #555;
	margin: 0 0 20px;
}

.mp-cta-buttons {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.mp-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.mp-btn-primary {
	background: #1a1a1a;
	color: #ffffff;
}

.mp-btn-primary:hover {
	background: #333;
	transform: translateY(-2px);
}

.mp-btn-secondary {
	background: #f5f5f5;
	color: #1a1a1a;
	border: 1px solid #e5e5e5;
}

.mp-btn-secondary:hover {
	background: #e9e9e9;
}

.mp-quicknav {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin: 24px 0;
	font-family: 'Montserrat', sans-serif;
}

.mp-quicknav-btn {
	display: inline-block;
	padding: 10px 18px;
	background: #ffffff;
	color: #1a1a1a;
	border: 1px solid #e5e5e5;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.mp-quicknav-btn:hover {
	background: #1a1a1a;
	color: #ffffff;
	border-color: #1a1a1a;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

@media (max-width: 480px) {
	.mp-quicknav-btn {
		padding: 9px 14px;
		font-size: 13px;
	}
}

@media (max-width: 768px) {
	.mp-card,
	.mp-card-reverse {
		flex-direction: column;
		padding: 28px 22px;
		gap: 20px;
		text-align: center;
	}

	.mp-card-image {
		width: 200px;
	}

	.mp-card-image img {
		max-width: 200px;
	}

	.mp-card-title {
		font-size: 22px;
	}

	.mp-card-text {
		text-align: center;
		font-size: 15px;
	}

	.mp-info-list li {
		text-align: left;
	}

	.mp-intro p {
		font-size: 15px;
	}
	.mp-tip, .mp-note {
		text-align: left;
	}
}