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

body {
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
	background: #ffffff;
	line-height: 1.65;
	font-size: 16px;
}

a { color: #00569c; text-decoration: none; }
a:hover { color: #0067bb; text-decoration: underline; }

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

header.site-header {
	background: #ffffff;
	border-bottom: 1px solid #ecf2f4;
	padding: 16px 0;
}

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

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #00569c;
}

.logo-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #00569c;
	color: #ffffff;
	font-weight: bold;
	font-size: 20px;
	flex-shrink: 0;
}

.logo-text {
	font-size: 14px;
	font-weight: bold;
	line-height: 1.3;
	color: #00569c;
}

.header-contacts {
	text-align: right;
	font-size: 14px;
	color: #666666;
}

.header-contacts strong { display: block; color: #00569c; font-size: 17px; }

nav.topnav {
	background: #00569c;
}

nav.topnav .container {
	display: flex;
	flex-wrap: wrap;
}

nav.topnav a {
	color: #ffffff;
	text-decoration: none;
	padding: 12px 18px;
	font-size: 14px;
	display: inline-block;
}

nav.topnav a:hover, nav.topnav a.active {
	background: #0067bb;
}

.page-head {
	background: #ecf2f4;
	padding: 26px 0;
	border-bottom: 1px solid #dbe6ea;
}

.page-head h1 {
	color: #00569c;
	font-size: 26px;
}

.hero {
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid #ecf2f4;
}

.hero .container { position: relative; padding: 0; max-width: none; }

.hero-bg {
	display: block;
	width: 100%;
	height: 360px;
	object-fit: cover;
}

.hero-text {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0, 30, 60, 0.55);
	color: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 20px 40px;
}

.hero-text h2 {
	font-size: 28px;
	max-width: 640px;
	margin-bottom: 14px;
	color: #ffffff;
}

.hero-text p {
	max-width: 560px;
	color: #eef4f8;
	margin-bottom: 18px;
}

.btn {
	display: inline-block;
	background: #00569c;
	color: #ffffff !important;
	padding: 12px 24px;
	border-radius: 4px;
	font-weight: bold;
	text-decoration: none !important;
}

.btn:hover { background: #0067bb; }

section {
	padding: 44px 0;
	border-bottom: 1px solid #f2f6f7;
}

section.alt { background: #f7f9fa; }

h2 {
	font-size: 22px;
	margin-bottom: 18px;
	color: #00569c;
	border-left: 5px solid #0067bb;
	padding-left: 12px;
}

h3 { font-size: 17px; margin: 16px 0 8px; color: #333333; }

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

ul.plain { list-style: none; margin-bottom: 16px; }
ul.plain li { padding: 5px 0 5px 20px; position: relative; font-size: 15px; color: #4a4a4a; }
ul.plain li:before { content: "•"; color: #0067bb; position: absolute; left: 0; font-weight: bold; }

.two-col {
	display: flex;
	gap: 36px;
	flex-wrap: wrap;
	align-items: flex-start;
}

.two-col > div { flex: 1 1 320px; }

.rounded-img {
	width: 100%;
	max-width: 320px;
	border-radius: 8px;
	display: block;
}

.staff-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 22px;
	margin: 20px 0;
}

.staff-card {
	background: #ffffff;
	border: 1px solid #ecf2f4;
	border-radius: 8px;
	padding: 18px;
	text-align: center;
}

.staff-card img {
	width: 100%;
	max-width: 200px;
	aspect-ratio: 2 / 3;
	object-fit: cover;
	border-radius: 6px;
	margin: 0 auto 14px;
	display: block;
}

.staff-card .name { font-weight: bold; font-size: 15px; color: #333333; margin-bottom: 4px; }
.staff-card .role { font-size: 13px; color: #00569c; margin-bottom: 10px; }
.staff-card p { text-align: left; font-size: 14px; }

.staff-grid.full { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

.review-card {
	background: #ffffff;
	border: 1px solid #ecf2f4;
	border-radius: 8px;
	padding: 20px 22px;
	margin-bottom: 18px;
}

.review-meta { font-size: 13px; color: #909090; margin-bottom: 8px; font-weight: bold; }

.contacts-box {
	background: #ffffff;
	border: 1px solid #ecf2f4;
	border-radius: 8px;
	padding: 22px;
}

footer {
	background: #00335c;
	color: #cfe0ec;
	text-align: center;
	padding: 30px 0;
	font-size: 13px;
}

footer a { color: #ffffff; }

footer nav {
	margin: 14px 0;
}

footer nav a {
	display: inline-block;
	padding: 4px 12px;
}

footer .copy { color: #9ab5c9; margin-top: 10px; }

@media (max-width: 700px) {
	header.site-header .inner { justify-content: center; text-align: center; }
	.header-contacts { text-align: center; }
	.hero-bg { height: 260px; }
	.hero-text { padding: 16px 24px; }
	.hero-text h2 { font-size: 21px; }
}
