:root {
	--text: #252525;
	--muted: #666;
	--line: #dedede;
	--link: #1a5f7a;
	--header: #fff;
	--footer: #1d1d1d;
	--max: 1180px;
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	background: #fff;
	color: var(--text);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.62;
	-webkit-font-smoothing: antialiased;
}
a {
	color: var(--link);
	text-decoration: none;
}
a:hover,
a:focus {
	text-decoration: underline;
}
.site-header {
	background: var(--header);
	border-bottom: 1px solid #e6e6e6;
}
.header-inner {
	max-width: var(--max);
	margin: 0 auto;
	padding: 25px 28px 19px;
	display: flex;
	align-items: center;
	gap: 42px;
}
.brand {
	font-size: 22px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.025em;
	color: #202020;
	text-decoration: none;
	white-space: nowrap;
}
.nav {
	margin-left: auto;
	display: flex;
	gap: 27px;
	align-items: center;
	flex-wrap: wrap;
}
.nav a {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #222;
}
.page {
	max-width: var(--max);
	margin: 0 auto;
	padding: 62px 28px 90px;
}
h1 {
	font-size: 44px;
	line-height: 1.12;
	margin: 0 0 8px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #1f1f1f;
}
.subtitle {
	font-size: 24px;
	line-height: 1.3;
	margin: 0 0 52px;
	font-weight: 400;
	color: #333;
}
.section-title {
	font-size: 24px;
	line-height: 1.25;
	margin: 58px 0 25px;
	padding-top: 7px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	color: #222;
}
.faq-item {
	margin: 0 0 26px;
}
.faq-item h3 {
	font-size: 18px;
	line-height: 1.35;
	margin: 0 0 7px;
	font-weight: 700;
	color: #242424;
}
.faq-item p {
	margin: 0 0 10px;
}
.faq-item p + p {
	margin-top: 5px;
}
#content ul {
  clear: both;
  list-style: none;
  margin: 1.6em auto;
  padding: 0;
}            
.manage-list {
	list-style: none;
	padding: 0;
	margin: 13px 0 35px;
	columns: 2;
	column-gap: 50px;
}
.manage-list li {
	break-inside: avoid;
	margin: 0 0 7px;
	position: relative;
}
.table-wrap {
	width: 100%;
	margin: 18px 0 27px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}
.publication-card {
	min-width: 0;
	padding: 18px 20px;
	border: 1px solid var(--line);
	background: #fff;
	font-size: 15px;
}
.publication-field {
	margin: 0 0 12px;
	overflow-wrap: anywhere;
}
.publication-field:last-child {
	margin-bottom: 0;
}
.publication-card .publication-field:first-child {
	margin: -18px -20px 12px;
	padding: 12px 20px;
	background: #f4f4f4;
	font-weight: 700;
}
.publication-label {
	display: block;
	margin-bottom: 2px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-weight: 700;
	color: var(--muted);
}
.alert-list,
.steps-list,
.download-list {
	margin: 10px 0 20px;
	padding-left: 24px;
}
.alert-list li,
.steps-list li,
.download-list li {
	margin-bottom: 7px;
}
.rule {
	border: 0;
	border-top: 1px solid #e0e0e0;
	margin: 52px 0;
}
.site-footer {
	background: var(--footer);
	color: #ddd;
}
.footer-inner {
	max-width: var(--max);
	margin: 0 auto;
	padding: 25px 28px;
	font-size: 11px;
	letter-spacing: 0.055em;
	text-transform: uppercase;
	display: flex;
	gap: 13px;
	flex-wrap: wrap;
	align-items: center;
}
.footer-inner a {
	color: #fff;
}
.footer-sep {
	color: #777;
}
@media (max-width: 820px) {
	.header-inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
	}
	.nav {
		margin: 0;
		gap: 16px 22px;
	}
	.page {
		padding: 42px 22px 70px;
	}
	h1 {
		font-size: 36px;
	}
	.subtitle {
		font-size: 21px;
		margin-bottom: 40px;
	}
	.manage-list {
		columns: 1;
	}
	.section-title {
		margin-top: 48px;
	}
	.table-wrap {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 520px) {
	body {
		font-size: 15px;
	}
	.header-inner {
		padding: 22px 18px 17px;
	}
	.page {
		padding: 35px 18px 60px;
	}
	h1 {
		font-size: 32px;
	}
	.subtitle {
		font-size: 19px;
	}
	.faq-item h3 {
		font-size: 17px;
	}
	.section-title {
		font-size: 21px;
	}
	.nav {
		display: none;
	}
}