/* ===== Pages unified style ===== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: "Inter", "Segoe UI", Roboto, sans-serif;
	background-color: #eef1f6;
	color: #2c3e50;
	line-height: 1.7;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

/* ---------- Main content card ---------- */
.main-content {
	flex: 1;
	max-width: 840px;
	margin: 48px auto;
	padding: 48px 52px;
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 6px 24px rgba(44, 62, 80, 0.07);
	width: 92%;
}

/* ---------- Typography ---------- */
h1 {
	font-size: 28px;
	font-weight: 700;
	color: #1a3c5e;
	margin-bottom: 8px;
	letter-spacing: -0.3px;
}

h2 {
	font-size: 19px;
	font-weight: 600;
	margin-top: 32px;
	margin-bottom: 12px;
	color: #1a3c5e;
	border-bottom: 2px solid #d6e4f0;
	padding-bottom: 6px;
}

h3 {
	font-size: 16px;
	font-weight: 600;
	margin-top: 22px;
	margin-bottom: 8px;
	color: #27496d;
}

p {
	margin-bottom: 16px;
	font-size: 15px;
	color: #4a5568;
}

a {
	color: #2b6cb0;
}

strong {
	color: #2c3e50;
}

/* ---------- Special paragraphs ---------- */
p.update-date {
	font-size: 13px;
	color: #718096;
	margin-bottom: 20px;
}

p.disclaimer {
	font-size: 14px;
	color: #5a6c7d;
	background-color: #f7fafc;
	border-left: 4px solid #2b6cb0;
	padding: 14px 18px;
	border-radius: 0 8px 8px 0;
	margin-top: 24px;
}

/* ---------- Lists ---------- */
ul {
	margin-bottom: 16px;
	padding-left: 22px;
	color: #4a5568;
	font-size: 15px;
}

ul li {
	margin-bottom: 7px;
}

ul.content-list {
	list-style: disc;
}

/* ---------- Contact info block ---------- */
.contact-info {
	margin-bottom: 16px;
	font-size: 15px;
	color: #4a5568;
	background: #f7fafc;
	padding: 12px 16px;
	border-radius: 8px;
}

.contact-info strong {
	display: block;
	margin-bottom: 2px;
	font-weight: 600;
	color: #1a3c5e;
}

/* ---------- Footer ---------- */
.footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px 32px;
	width: 100%;
	margin-top: 48px;
	padding: 36px 72px;
	background-color: #1a3c5e;
	color: #cbd5e0;
	box-sizing: border-box;
}

.footer-copy {
	font-size: 14px;
	color: #a0aec0;
	font-weight: 500;
	margin: 0;
}

ul.footer-links {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	padding: 0;
	margin: 0;
}

ul.footer-links li a {
	text-decoration: none;
	color: #e2e8f0;
	font-size: 14px;
	white-space: nowrap;
	transition: color 0.2s;
}

ul.footer-links li a:hover {
	color: #ffffff;
}

/* ---------- Responsive ---------- */
@media screen and (max-width: 600px) {
	.main-content {
		padding: 24px 20px;
		margin: 20px auto;
		border-radius: 8px;
	}

	h1 {
		font-size: 24px;
	}

	.footer {
		flex-direction: column;
		padding: 24px 20px;
		gap: 18px;
	}

	ul.footer-links {
		flex-direction: column;
		gap: 10px;
	}

	ul.footer-links li a,
	.footer-copy {
		font-size: 13px;
	}
}

@media screen and (max-width: 900px) {
	.footer {
		padding: 28px 36px;
	}
}
