/* Eurasia Control Center page */
.ecc-page {
	padding: 140px 60px;
	background-color: #EBEBFA;
	color: white;
}

/* Кто мы */
.ecc-intro {
	max-width: 760px;
	margin: 0 auto 110px auto;
	text-align: center;
}

.section-label {
	display: inline-block;
	font-family: 'Asap Sharp', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	color: #366EE6;
}

.ecc-intro .section-title {
	font-family: 'Asap Sharp', sans-serif;
	font-size: 40px;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: #4c4c4c;
	margin: 16px 0 40px 0;
}

.ecc-intro-text {
	text-align: left;
}

.ecc-intro-text p {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.85;
	color: rgb(80, 79, 79);
	margin-bottom: 26px;
}

.ecc-intro-text p span {
	color: #366EE6;
}

.ecc-highlight-line {
	font-size: 18px !important;
	font-weight: 500 !important;
	font-style: italic;
	color: #366EE6 !important;
	text-align: center;
	padding-top: 90px;
	border-top: 1px solid rgba(76, 76, 76, 0.12);
	margin-top: 24px;
}

/* Наш подход */
.ecc-approach {
	max-width: 900px;
	margin: 0 auto 110px auto;
	padding-top: 60px;
	border-top: 1px solid rgba(76, 76, 76, 0.12);
}

.ecc-approach-content h3 {
	font-family: 'Asap Sharp', sans-serif;
	font-size: 28px;
	font-weight: 600;
	color: #4c4c4c;
	margin-bottom: 32px;
}

.ecc-approach-content > p {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.85;
	color: rgb(80, 79, 79);
	margin-bottom: 22px;
}

/* Забота как часть образования */
.ecc-care {
	max-width: 960px;
	margin: 0 auto 110px auto;
	padding-top: 60px;
	border-top: 1px solid rgba(76, 76, 76, 0.12);
}

.ecc-care-header h3 {
	font-family: 'Asap Sharp', sans-serif;
	font-size: 28px;
	font-weight: 600;
	color: #4c4c4c;
	margin-bottom: 32px;
}

.ecc-care-lead {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.85;
	color: rgb(80, 79, 79);
	max-width: 680px;
	margin-bottom: 40px;
}

/* Карточки: используются и в "Наш подход", и в "Почему именно мы" */
.care-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.care-card {
	background: #ffffff;
	border: 1px solid rgba(76, 76, 76, 0.1);
	border-radius: 16px;
	padding: 32px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.care-card:hover {
	border-color: rgba(54, 110, 230, 0.35);
	box-shadow: 0 12px 28px rgba(54, 110, 230, 0.08);
}

.care-icon {
	width: 34px;
	height: 34px;
	color: #366EE6;
	margin-bottom: 20px;
}

.care-icon svg {
	width: 100%;
	height: 100%;
}

.care-card h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #4c4c4c;
}

.care-card p {
	font-size: 14.5px;
	font-weight: 300;
	line-height: 1.7;
	color: rgb(80, 79, 79);
}

/* Что мы предлагаем */
.ecc-offer {
	max-width: 760px;
	margin: 0 auto 110px auto;
	padding-top: 60px;
	border-top: 1px solid rgba(76, 76, 76, 0.12);
}

.ecc-offer-header h3 {
	font-family: 'Asap Sharp', sans-serif;
	font-size: 28px;
	font-weight: 600;
	color: #4c4c4c;
	margin-bottom: 20px;
}

.offer-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.offer-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 16px 4px;
	border-bottom: 1px solid rgba(76, 76, 76, 0.08);
}

.offer-item:last-child {
	border-bottom: none;
}

.offer-dot {
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #366EE6;
	margin-top: 8px;
}

.offer-item p {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.7;
	color: rgb(80, 79, 79);
}

.offer-item p strong {
	font-weight: 600;
	color: #4c4c4c;
}

/* Почему выбирают нас — закрывающий блок */
.ecc-closing {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	padding-top: 60px;
	border-top: 1px solid rgba(76, 76, 76, 0.12);
}

.quote-mark {
	width: 32px;
	height: 32px;
	color: rgba(54, 110, 230, 0.4);
	margin-bottom: 20px;
}

.ecc-closing-lead {
	font-size: 17px;
	font-weight: 300;
	line-height: 1.8;
	color: rgb(80, 79, 79);
	margin-bottom: 24px;
}

.ecc-closing-final {
	font-size: 19px;
	font-weight: 400;
	font-style: italic;
	line-height: 1.8;
	color: #4c4c4c;
}

@media (max-width: 900px) {
	.ecc-page { padding: 90px 20px; }
	.ecc-intro .section-title { font-size: 26px; }
	.ecc-highlight-line { padding-top: 50px; }
	.ecc-approach-content h3,
	.ecc-care-header h3,
	.ecc-offer-header h3 { font-size: 22px; }
	.care-grid { grid-template-columns: 1fr; }
	.offer-item { padding: 12px 2px; }
}