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

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

a {
	color: #3b6bad;
}

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

header.hero {
	background: #3b6bad;
	color: #fff;
	padding: 40px 0 50px;
	text-align: center;
}

header.hero h1 {
	font-size: 30px;
	margin-bottom: 12px;
}

header.hero p {
	font-size: 18px;
	opacity: 0.95;
}

header.hero .phone {
	display: inline-block;
	margin-top: 22px;
	background: #ffe414;
	color: #222;
	font-weight: bold;
	padding: 12px 26px;
	border-radius: 30px;
	font-size: 18px;
	text-decoration: none;
}

nav.crumbs {
	background: #eeeeee;
	padding: 10px 0;
	font-size: 13px;
	color: #777;
}

nav.crumbs a {
	color: #777;
}

section {
	padding: 45px 0;
}

section.alt {
	background: #f6f8fb;
}

section.dark {
	background: #3b6bad;
	color: #fff;
}

h2 {
	font-size: 24px;
	margin-bottom: 24px;
	text-align: center;
}

.stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	text-align: center;
}

.stats .stat {
	min-width: 150px;
}

.stats .stat strong {
	display: block;
	font-size: 34px;
	color: #3b6bad;
}

section.dark .stats .stat strong {
	color: #ffe414;
}

.stats .stat span {
	font-size: 13px;
	color: #666;
}

section.dark .stats .stat span {
	color: #e5edf7;
}

.grid3 {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.grid3 .card {
	flex: 1 1 260px;
	background: #fff;
	border-radius: 6px;
	padding: 20px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.grid3 .card h3 {
	margin-bottom: 10px;
	font-size: 16px;
	color: #3b6bad;
}

.why-list {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.why-list .item {
	flex: 1 1 280px;
	display: flex;
	gap: 14px;
}

.why-list .num {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #ffe414;
	color: #222;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 18px;
}

.why-list h3 {
	font-size: 16px;
	margin-bottom: 6px;
}

.why-list p {
	font-size: 14px;
	color: #e5edf7;
}

section.dark .why-list h3 {
	color: #fff;
}

.director-quote {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.director-quote strong {
	display: block;
	font-size: 19px;
	margin-bottom: 4px;
}

.director-quote .role {
	color: #777;
	font-size: 13px;
	margin-bottom: 18px;
	display: block;
}

.compare {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.compare .col {
	flex: 1 1 280px;
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 6px;
	padding: 18px;
}

.compare .col h3 {
	font-size: 16px;
	margin-bottom: 10px;
	color: #b23c3c;
}

.compare .col p {
	font-size: 14px;
	color: #555;
}

.faq-item {
	margin-bottom: 20px;
	border-bottom: 1px solid #e2e2e2;
	padding-bottom: 20px;
}

.faq-item:last-child {
	border-bottom: none;
}

.faq-item h3 {
	font-size: 17px;
	margin-bottom: 8px;
	color: #3b6bad;
}

.faq-item p, .faq-item li {
	font-size: 14px;
	color: #444;
}

.faq-item ul, .faq-item ol {
	margin: 8px 0 8px 20px;
}

.reviews {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.review {
	flex: 1 1 280px;
	background: #fff;
	border-radius: 6px;
	padding: 20px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.review strong {
	display: block;
	margin-bottom: 8px;
	color: #3b6bad;
}

.review p {
	font-size: 14px;
	color: #444;
}

.subjects {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}

.subjects .subj {
	background: #fff;
	border-radius: 6px;
	padding: 14px 20px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.08);
	min-width: 220px;
}

.subjects .subj strong {
	display: block;
	color: #3b6bad;
}

.subjects .subj span {
	font-size: 13px;
	color: #666;
}

.egeSubjectsList {
	columns: 2;
	max-width: 700px;
	margin: 0 auto;
	list-style: none;
}

.egeSubjectsList li {
	padding: 5px 0;
}

.egeSubjectsList li::before {
	content: "✓ ";
	color: #3b6bad;
	font-weight: bold;
}

.contacts {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: space-between;
}

.contacts .block h3 {
	margin-bottom: 8px;
	font-size: 16px;
}

.contacts .block p {
	font-size: 14px;
	color: #555;
}

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

footer a {
	color: #ffe414;
}

@media (max-width: 700px) {
	.egeSubjectsList {
		columns: 1;
	}
	header.hero h1 {
		font-size: 24px;
	}
}
