* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	color: #232323;
	background: #fff;
	line-height: 1.6;
	font-size: 16px;
}

a {
	color: #146214;
}

.container {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 20px;
}

header.site-header {
	background: #146214;
	color: #fff;
	padding: 16px 0;
}

header.site-header .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}

.logo {
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
}

nav.topnav {
	background: #0e4a0e;
	padding: 10px 0;
}

nav.topnav .container {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 13px;
}

nav.topnav a {
	color: #dff2df;
	text-decoration: none;
}

nav.topnav a:hover {
	color: #fff;
	text-decoration: underline;
}

.hero {
	background: #f2f7f2;
	padding: 36px 0;
	border-bottom: 1px solid #dcebdc;
}

.flex-row {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	align-items: center;
}

.flex-row .text {
	flex: 1 1 380px;
}

.flex-row img {
	flex: 0 0 auto;
	max-width: 320px;
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.hero h1 {
	font-size: 24px;
	margin-bottom: 12px;
	color: #146214;
}

.hero p, .flex-row .text p {
	font-size: 15px;
	color: #444;
}

.flex-row h2 {
	margin-top: 0;
}

section {
	padding: 38px 0;
	border-bottom: 1px solid #eee;
}

section.alt {
	background: #f9faf9;
}

h2 {
	font-size: 21px;
	margin-bottom: 20px;
	color: #146214;
	border-left: 5px solid #146214;
	padding-left: 12px;
}

h3 {
	font-size: 17px;
	margin: 18px 0 10px;
	color: #232323;
}

p {
	margin-bottom: 12px;
	font-size: 15px;
	color: #444;
}

.district-block {
	margin-bottom: 34px;
}

.district-block:last-child {
	margin-bottom: 0;
}

.map-gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 14px 0 18px;
}

.map-gallery img {
	width: 160px;
	height: auto;
	border: 1px solid #ccc;
	border-radius: 3px;
}

.village-groups {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.village-groups .grp {
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 6px;
	padding: 14px 20px;
}

.village-groups .grp ul {
	list-style: none;
	font-size: 13px;
	color: #444;
	columns: 5 160px;
	column-gap: 20px;
}

.village-groups .grp li {
	padding: 2px 0;
	break-inside: avoid;
}

.no-list-note {
	font-size: 14px;
	color: #666;
	font-style: italic;
}

.district-index {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.district-index span {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 20px;
	padding: 6px 14px;
	font-size: 13px;
	color: #444;
}

.district-index span.has-content {
	background: #eaf5ea;
	border-color: #146214;
	color: #146214;
	font-weight: bold;
}

.district-index a {
	text-decoration: none;
	color: inherit;
}

.contacts-box {
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 6px;
	padding: 20px;
	max-width: 420px;
}

footer {
	background: #1a1a1a;
	color: #ccc;
	text-align: center;
	padding: 22px 0;
	font-size: 13px;
}

footer a {
	color: #8fd18f;
}

@media (max-width: 700px) {
	.flex-row {
		flex-direction: column;
	}
	.flex-row img {
		max-width: 100%;
	}
	.map-gallery img {
		width: calc(50% - 6px);
	}
	.village-groups .grp ul {
		columns: 2 140px;
	}
}
