* {
	box-sizing: border-box
}

body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	background: #fff7d6;
	color: #181818
}

.site-header {
	min-height: 88px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffe500;
	padding: 14px 12px;
	box-shadow: 0 2px 14px rgba(0, 0, 0, .08)
}

.brand img {
	width: 92px;
	height: 92px;
	object-fit: contain;
	display: block
}

.hero {
	min-height: calc(100vh - 88px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px 16px 130px
}

.hero-card {
	width: 100%;
	max-width: 520px;
	text-align: center;
	background: #fff;
	border-radius: 26px;
	padding: 28px 18px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, .12);
	border: 1px solid rgba(0, 0, 0, .06)
}

.hero-card .big-logo {
	width: 155px;
	height: 155px;
	object-fit: contain;
	margin: 0 auto 16px;
	display: block
}

.badge {
	display: inline-block;
	background: #1238bf;
	color: white;
	border-radius: 999px;
	padding: 8px 14px;
	font-weight: 700;
	font-size: 13px;
	margin-bottom: 12px
}

.hero h1 {
	font-size: 28px;
	line-height: 1.15;
	margin: 8px 0 10px
}

.hero p {
	font-size: 16px;
	line-height: 1.55;
	color: #555;
	margin: 0 auto 18px;
	max-width: 420px
}

.btn-row {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap
}

.main-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border: none;
	border-radius: 999px;
	background: #163fc8;
	color: white;
	font-weight: 800;
	font-size: 17px;
	padding: 15px 28px;
	box-shadow: 0 10px 24px rgba(22, 63, 200, .28);
	cursor: pointer
}

.outline-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border: 2px solid #163fc8;
	border-radius: 999px;
	color: #163fc8;
	background: white;
	font-weight: 800;
	font-size: 16px;
	padding: 13px 22px
}

.bottom-popup {
	z-index: 99;
	display: flex;
	justify-content: center;
	pointer-events: none;
	text-decoration: none;
	
}

.popup-btn {
    margin-top: 10px;
    margin-bottom: 10px;
	pointer-events: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: 100%;
	max-width: 460px;
	text-decoration: none;
	background: linear-gradient(135deg, #173fd0, #05227e);
	color: #fff;
	border-radius: 18px;
	padding: 8px 14px;
	font-size: 16px;
	font-weight: 600;
	box-shadow: 0 16px 35px rgba(5, 34, 126, .34);
	animation: bounce 1.25s infinite
}

.popup-btn span {
	font-size: 20px
}

.footer {
	background: #111;
	color: #fff;
	padding: 26px 14px;
	text-align: center
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 12px
}

.footer-links a {
	color: #ffe500;
	text-decoration: none;
	border: 1px solid rgba(255, 229, 0, .35);
	border-radius: 999px;
	padding: 8px 12px;
	font-size: 14px
}

.page {
	min-height: 70vh;
	padding: 24px 14px 110px
}

.page-card {
	max-width: 780px;
	margin: auto;
	background: #fff;
	border-radius: 18px;
	padding: 22px;
	box-shadow: 0 12px 36px rgba(0, 0, 0, .10)
}

.page-card h1 {
	margin-top: 0;
	color: #1238bf
}

.page-card p,
.page-card li {
	line-height: 1.7;
	color: #444
}

@keyframes bounce {

	0%,
	100% {
		transform: translateY(0) scale(1)
	}

	50% {
		transform: translateY(-7px) scale(1.02)
	}
}

@media(max-width:480px) {
	.hero h1 {
		font-size: 24px
	}

	.brand img {
		width: 76px;
		height: 76px
	}

	.hero-card .big-logo {
		width: 130px;
		height: 130px
	}

	.popup-btn {
		font-size: 17px
	}
}