/* ===== Общие стили для страниц pages/ ===== */

/* Сброс */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Segoe UI", Roboto, "Open Sans", sans-serif;
	background-color: #f0f2f5;
	color: #2d2d2d;
	line-height: 1.7;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

/* Контент */
.page-content {
	flex: 1;
	max-width: 860px;
	margin: 48px auto;
	padding: 44px 48px;
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	width: 92%;
}

h1 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 28px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 2px solid #e8e8e8;
}

h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 19px;
	font-weight: 600;
	color: #1a1a2e;
	margin-top: 28px;
	margin-bottom: 12px;
}

h3 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 16px;
	font-weight: 600;
	color: #1a1a2e;
	margin-top: 22px;
	margin-bottom: 10px;
}

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

a {
	color: #2a6496;
	text-decoration: underline;
	transition: color 0.2s ease;
}

a:hover {
	color: #1a4060;
}

/* Списки */
ul.info-list {
	margin-bottom: 16px;
	padding-left: 24px;
	color: #4a4a4a;
	font-size: 15px;
	list-style: disc;
}

ul.info-list li {
	margin-bottom: 10px;
	line-height: 1.6;
}

/* Дата обновления */
.date-updated {
	font-size: 13px;
	color: #888;
	font-style: italic;
	margin-bottom: 20px;
}

/* Плашка-предупреждение (disclaimer) */
.notice-block {
	font-size: 14px;
	color: #6b6b6b;
	background-color: #f7f7fa;
	border-left: 4px solid #b0b0c0;
	padding: 14px 18px;
	margin-top: 24px;
	margin-bottom: 16px;
	border-radius: 0 6px 6px 0;
	line-height: 1.6;
}

/* Контактная информация */
.contact-block {
	margin-bottom: 16px;
	font-size: 15px;
	color: #4a4a4a;
}

.contact-block strong {
	display: block;
	margin-bottom: 4px;
	color: #1a1a2e;
}

/* ===== Футер ===== */
.site-footer {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px 40px;
	width: 100%;
	margin-top: auto;
	padding: 36px 60px;
	background-color: #fafafa;
	border-top: 2px solid #e2e2e2;
	box-sizing: border-box;
}

.site-footer .footer-nav {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px 28px;
	padding: 0;
	margin: 0;
}

.site-footer .footer-nav li a {
	text-decoration: none;
	color: #555;
	font-size: 13px;
	white-space: nowrap;
	transition: color 0.2s ease;
	border-bottom: 1px solid transparent;
}

.site-footer .footer-nav li a:hover {
	color: #1a1a2e;
	border-bottom-color: #1a1a2e;
}

.site-footer .copyright {
	font-size: 12px;
	color: #888;
	margin: 0;
	white-space: nowrap;
}

/* ===== Адаптивность ===== */
@media screen and (max-width: 600px) {
	.page-content {
		padding: 24px 20px;
		margin: 20px auto;
		border-radius: 8px;
	}

	h1 {
		font-size: 22px;
	}

	h2 {
		font-size: 17px;
	}

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

	.site-footer .footer-nav {
		flex-direction: column;
		align-items: center;
		gap: 8px;
	}

	.site-footer .footer-nav li a {
		font-size: 13px;
	}

	.site-footer .copyright {
		white-space: normal;
	}
}

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