﻿:root{
	--accent:#88c92d;
	--accent-dark:#69a61f;
	--bg:#f6f8f3;
	--card:#ffffff;
	--text:#2b2b2b;
	--muted:#6b6b6b;
	--line:#e4e8db;
	--shadow:0 8px 24px rgba(0,0,0,.07);
}

body{
 background:var(--bg);
}

.page-wrap{
	max-width: 980px;
	margin: 0 auto;
	padding: 10px;
	font-family: "Segoe UI", Arial, sans-serif;
	color: var(--text);
	line-height: 1.65;
}

.AboutItem{
	background: var(--card);
	border: 1px solid var(--line);
	border-left: 5px solid var(--accent);
	border-radius: 16px;
	padding: 18px 20px;
	margin: 0 0 14px 0;
	box-shadow: var(--shadow);
	transition: .2s ease;
}

.AboutItem:hover{
	transform: translateY(-2px);
	border-color: #cfe5ae;
	box-shadow: 0 12px 28px rgba(136,201,45,.14);
}

.AboutItem h3,
.AboutItem h4,
.AboutItem h5{
	margin: 0 0 12px 0;
	font-weight: 700;
	color: #1f1f1f;
}

.AboutItem h3 span,
.AboutItem h4 span,
.AboutItem h5 span{
	display: inline-block;
	border-bottom: 2px solid var(--accent);
	padding: 0 0 .15em 0;
}

.AboutItem p{
	margin: 10px 0;
}

.AboutItem ul{
	list-style: none;
	margin: 10px 0 10px 22px;
	padding: 0;
}

.AboutItem li{
	margin: 6px 0;
}

.AboutItem a{
	color: var(--accent-dark);
	text-decoration: none;
	font-weight: 600;
}

.AboutItem a:hover{
	text-decoration: underline;
}

.AboutItem sup{
	font-size: .75em;
}

/* Map-box */
.map-box{
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	box-shadow: var(--shadow);
	border: 1px solid var(--line);
	width: 100%;
	max-width: 720px;
	height: 420px;
	margin: 12px auto 0;
}

.map-box iframe{
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.section-note{
	color: var(--muted);
	font-size: .95em;
}



.tabs {
	position: relative;
}
.tab, .tab-title {
	display: inline-block;
}
.tab input[type="radio"] { display: none; }
.tab-title {
	background: #88c92d22;
	padding: 5px 10px;
	border: 1px solid var(--accent);
	border-top: 2px solid var(--accent);
	border-bottom: none;
	border-radius: 4px 4px 0 0;
}
.tab-content {
	position: absolute;
	border: 1px solid var(--accent);
	padding: 10px;
	left: 0;
	width: calc(100% - 20px);
	display: none;
}
.tab :checked + .tab-title {
	position: relative;
	background: #fff;
	border-top: 4px solid var(--accent);
	top: 1px;
	z-index: 1;
}
.tab :checked ~ .tab-content {
	display: block; /* Показываем активную вкладку */
}
/* end Map-box*/

@media (max-width: 640px){
	.page-wrap{
		padding: 6px;
	}

	.AboutItem{
		padding: 14px 14px;
		border-radius: 14px;
	}

	.map-box{
		height: 300px;
	}
}