/* ============================
   Единый стиль для информационных страниц
   (about, contact, delivery, privacy, refund, terms)
   ============================ */

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

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: "Inter", "Segoe UI", Roboto, "Noto Sans", sans-serif;
	background-color: #eef1f6;
	color: #2d2d3f;
	line-height: 1.7;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ---- Main content card ---- */
.page-body {
	flex: 1;
	max-width: 860px;
	margin: 48px auto;
	padding: 44px 48px;
	background-color: #ffffff;
	border-radius: 10px;
	box-shadow: 0 4px 24px rgba(30, 40, 80, 0.06);
	width: 92%;
}

/* ---- Typography ---- */
h1 {
	font-size: 28px;
	font-weight: 700;
	color: #2a1a2e;
	margin-top: 0;
	margin-bottom: 22px;
	letter-spacing: -0.3px;
}

h2 {
	font-size: 19px;
	font-weight: 600;
	color: #16213e;
	margin-top: 30px;
	margin-bottom: 12px;
	padding-bottom: 6px;
	border-bottom: 2px solid #e8ecf2;
}

h3 {
	font-size: 16px;
	font-weight: 600;
	color: #16213e;
	margin-top: 22px;
	margin-bottom: 10px;
}

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

strong {
	font-weight: 600;
	color: #2d2d3f;
}

a {
	color: #3a5bc7;
	text-decoration: underline;
	text-decoration-color: rgba(58, 91, 199, 0.3);
	transition: text-decoration-color 0.2s;
}

a:hover {
	text-decoration-color: #3a5bc7;
}

/* ---- Date label ---- */
.date-label {
	display: inline-block;
	font-size: 13px;
	font-weight: 500;
	color: #7a7f96;
	background-color: #f3f4f8;
	padding: 4px 12px;
	border-radius: 4px;
	margin-bottom: 20px;
}

/* ---- Disclaimer / Note block ---- */
.note-block {
	font-size: 14px;
	color: #5c5c7a;
	background-color: #f7f8fb;
	border-left: 4px solid #6c7bbd;
	padding: 14px 18px;
	margin-top: 28px;
	margin-bottom: 16px;
	border-radius: 0 6px 6px 0;
	line-height: 1.65;
}

/* ---- Lists ---- */
ul.info-list {
	margin: 0 0 18px 0;
	padding-left: 22px;
	color: #4a4a68;
	font-size: 15px;
}

ul.info-list li {
	margin-bottom: 9px;
	line-height: 1.65;
}

ul.info-list li::marker {
	color: #6c7bbd;
}

/* ---- Contact block ---- */
.contact-block {
	margin-bottom: 18px;
	font-size: 15px;
	color: #4a4a68;
}

.contact-block strong {
	display: block;
	margin-bottom: 3px;
	font-weight: 600;
	color: #2d2d3f;
}

/* ---- Footer ---- */
.site-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 18px 28px;
	width: 100%;
	margin-top: auto;
	padding: 36px 72px;
	background-color: #2a1a2e;
	color: #c2c6d6;
	box-sizing: border-box;
}

.site-footer .copyright {
	font-size: 14px;
	font-weight: 600;
	color: #e2e4ec;
	margin: 0;
}

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

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

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

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

	h1 {
		font-size: 24px;
	}

	h2 {
		font-size: 17px;
		margin-top: 24px;
	}

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

	ul.nav-links {
		flex-direction: column;
		gap: 12px;
	}

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

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