@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 400;
	color: #f8fafc;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
	background: #002546;
	position: relative;
}

p {
	line-height: 1.7;
	color: #cbd5e1;
}

h1 {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 800;
	text-align: center;
	margin: 32px 0;
	background: linear-gradient(95.39deg, #ffffff 0%, #e2e8f0 50%, #fc550e 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

h2 {
	font-size: clamp(24px, 4vw, 32px);
	font-weight: 700;
	margin: 40px auto 24px;
	text-align: center;
	color: #fc5200;
	position: relative;
	max-width: fit-content;
	padding-bottom: 12px;
}

h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, #1e40af 0%, #fc5200 100%);
}

h3 {
	font-size: clamp(18px, 3vw, 24px);
	font-weight: 600;
	margin: 24px 0 16px;
	color: #fc5200;
}

ol,
ul {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

ol {
	counter-reset: list-counter;
}

ol li {
	counter-increment: list-counter;
	position: relative;
	padding-left: 40px;
	margin-bottom: 12px;
	line-height: 1.7;
}

ol li::before {
	content: counter(list-counter);
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(106deg, #5598df 0%, #478fdf 100%);
	color: #ffffff;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 600;
}

ul li {
	position: relative;
	padding-left: 32px;
	margin-bottom: 12px;
	line-height: 1.7;
}

ul li::before {
	content: '•';
	position: absolute;
	left: 0;
	top: 0;
	color: #fc5200;
	font-size: 20px;
	font-weight: bold;
}

strong {
	color: #fc5200;
	font-weight: 600;
}

.mb-header {
	position: sticky;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 99;
	background: #043c77;
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(30, 64, 175, 0.2);
	padding: 20px 0;
}

.mb-header .mb-flex-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.mb-header .mb-logo-wrapper {
	flex: 0 0 150px;
}

.mb-header .mb-logo-wrapper img {
	height: 80px;
	transition: transform 0.3s ease;
}

.mb-header .mb-logo-wrapper img:hover {
	transform: scale(1.05);
}

.mb-header .mb-buttons {
	display: flex;
	gap: 15px;
}

.mb-btn {
	background: linear-gradient(106deg, #5598df 0%, #478fdf 100%);
	color: #ffffff;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	width: 150px;
	padding: 12px 20px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0px 8px 20px 0px #1e40af4d;
}

.mb-btn.mb-secondary {
	background: linear-gradient(
		135deg,
		rgba(245, 158, 11, 0.1) 0%,
		rgba(217, 119, 6, 0.1) 100%
	);
	border: 1px solid #fd5400;
	color: #fd5400;
}

.mb-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(30, 64, 175, 0.4);
}

.mb-main {
	height: 100%;
	flex: 1 1 auto;
	padding: 0 0 50px;
}

.mb-hero {
	padding: 80px 0;
	position: relative;
	background: url('/assets/images/main-web.webp') center center / cover no-repeat;
	min-height: 500px;
	display: flex;
	align-items: center;
}

.mb-hero .mb-flex-container {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 40px;
}

.mb-hero .mb-text-col {
	flex: 1;
}

.mb-hero .mb-content {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.mb-hero .mb-content h1 {
	margin: 0;
	text-align: left;
}

.mb-hero .mb-cta a {
	background: linear-gradient(106deg, #5598df 0%, #478fdf 100%);
	color: #ffffff;
	padding: 18px 36px;
	border-radius: 100px;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	display: inline-block;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(30, 64, 175, 0.3);
	white-space: nowrap;
}

.mb-hero .mb-cta a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, #fc5200 0%, #f59e0b 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mb-hero .mb-cta a:hover::before {
	opacity: 1;
}

.mb-hero .mb-cta a:hover {
	transform: translateY(-4px);
	box-shadow: 0 32px 64px rgba(30, 64, 175, 0.4);
}

.mb-hero .mb-cta a span {
	position: relative;
	z-index: 1;
}

.mb-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

.mb-section {
	padding: 80px 0;
}

.mb-section p {
	margin: 20px 0;
	font-size: 16px;
}

.mb-section img {
	display: block;
	margin: 40px auto;
	max-width: 500px;
	border-radius: 16px;
}

.mb-footer {
	background: #0f172af2;
	backdrop-filter: blur(20px);
	border-top: 1px solid rgba(30, 64, 175, 0.2);
	color: #94a3b8;
	text-align: center;
	padding: 40px;
	font-size: 14px;
	font-weight: 500;
}

.table {
	width: 100%;
	overflow-x: auto;
}
.table table {
	width: 100%;
	border-collapse: collapse;
}
.table table td {
	color: #fff;
	padding: 10px 15px;
	border: 1px solid #fc5200;
	width: max-content;
}

.pageMenu li a {
	color: #fc5200;
}

@media (max-width: 768px) {
	h1 {
		margin: 24px 0;
		font-size: 28px;
	}

	h2 {
		font-size: 22px;
		margin: 24px auto 16px;
	}

	h3 {
		font-size: 18px;
		margin: 16px 0 12px;
	}

	.mb-container {
		max-width: 100%;
		padding: 0 20px;
	}

	.mb-btn {
		padding: 10px 16px;
		width: 120px;
		font-size: 13px;
	}

	.mb-header .mb-flex-container {
		justify-content: center;
		gap: 20px;
		flex-direction: column;
	}

	.mb-header .mb-logo-wrapper {
		flex: auto;
	}

	.mb-header .mb-logo-wrapper img {
		height: 32px;
	}

	.mb-main {
		padding: 0 0 30px;
	}

	.mb-hero {
		min-height: auto;
		padding: 60px 0;
		background: url('/assets/images/main-mob.webp') center center / cover
			no-repeat;
	}

	.mb-hero .mb-flex-container {
		gap: 30px;
		flex-direction: column;
		text-align: center;
	}

	.mb-hero .mb-cta a {
		width: 100%;
		max-width: 300px;
		text-align: center;
	}

	.mb-section {
		padding: 60px 0;
	}

	.mb-section img {
		max-width: 100%;
	}
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:15px;
	list-style: none;
	margin-bottom: 20px;
}
.footer-menu a {
	color:#fff;
	text-decoration: none;
}
.footer-menu li::before {
	content: none;
}