.ngt-page {
	color: #18202f;
	font-family: inherit;
}

.ngt-hero,
.ngt-section,
.ngt-cta {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1180px;
	padding: 56px 24px;
}

.ngt-hero {
	background: #f6f8fb;
	border-bottom: 1px solid #d8e0ea;
	max-width: none;
	padding-bottom: 72px;
	padding-top: 72px;
}

.ngt-hero > * {
	margin-left: auto;
	margin-right: auto;
	max-width: 1180px;
}

.ngt-kicker,
.ngt-pill,
.ngt-note {
	color: #506070;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.ngt-hero h1,
.ngt-section h1,
.ngt-section h2,
.ngt-cta h2 {
	color: #132033;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.08;
	margin: 0 0 18px;
}

.ngt-hero h1 {
	font-size: 48px;
	max-width: 820px;
}

.ngt-section h1 {
	font-size: 42px;
}

.ngt-section h2,
.ngt-cta h2 {
	font-size: 34px;
}

.ngt-hero p,
.ngt-section p,
.ngt-cta p {
	color: #465568;
	font-size: 18px;
	line-height: 1.65;
	margin: 0 0 24px;
	max-width: 760px;
}

.ngt-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.ngt-button,
.ngt-form button.ngt-button {
	align-items: center;
	background: #1267d8;
	border: 1px solid #1267d8;
	border-radius: 8px;
	color: #fff;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	line-height: 1.2;
	min-height: 46px;
	padding: 12px 18px;
	text-decoration: none;
}

.ngt-button:hover,
.ngt-button:focus {
	background: #0d4fb0;
	color: #fff;
}

.ngt-button-secondary {
	background: #fff;
	border-color: #c8d3e0;
	color: #132033;
}

.ngt-button-secondary:hover,
.ngt-button-secondary:focus {
	background: #edf3fb;
	color: #132033;
}

.ngt-grid {
	display: grid;
	gap: 18px;
	margin-top: 24px;
}

.ngt-grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ngt-grid-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ngt-grid article,
.ngt-tutor-card,
.ngt-steps article {
	background: #fff;
	border: 1px solid #d8e0ea;
	border-radius: 8px;
	box-shadow: 0 12px 28px rgba(31, 45, 61, 0.06);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px;
}

.ngt-grid strong,
.ngt-tutor-card strong,
.ngt-steps strong {
	color: #132033;
	font-size: 18px;
	font-weight: 800;
}

.ngt-grid span,
.ngt-tutor-card span,
.ngt-steps p {
	color: #506070;
	font-size: 15px;
	line-height: 1.55;
}

.ngt-steps {
	counter-reset: ngt-step;
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	margin-top: 24px;
}

.ngt-steps article span {
	align-items: center;
	background: #e9f2ff;
	border-radius: 8px;
	color: #1267d8;
	display: inline-flex;
	font-weight: 800;
	height: 34px;
	justify-content: center;
	width: 34px;
}

.ngt-cta {
	background: #132033;
	color: #fff;
	max-width: none;
	text-align: center;
}

.ngt-cta h2,
.ngt-cta p {
	color: #fff;
	margin-left: auto;
	margin-right: auto;
}

.ngt-form {
	background: #fff;
	border: 1px solid #d8e0ea;
	border-radius: 8px;
	box-sizing: border-box;
	margin-top: 24px;
	padding: 22px;
}

.ngt-form-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 18px;
}

.ngt-form label {
	color: #132033;
	display: flex;
	flex-direction: column;
	font-weight: 800;
	gap: 8px;
}

.ngt-form input,
.ngt-form select,
.ngt-form textarea {
	background: #f9fbfd;
	border: 1px solid #c8d3e0;
	border-radius: 8px;
	box-sizing: border-box;
	color: #132033;
	min-height: 44px;
	padding: 10px 12px;
	width: 100%;
}

.ngt-form-wide {
	grid-column: 1 / -1;
}

.ngt-tutor-card img {
	aspect-ratio: 4 / 3;
	border-radius: 8px;
	object-fit: cover;
	width: 100%;
}

.ngt-pill {
	background: #eef6ef;
	border-radius: 8px;
	color: #266b35;
	display: inline-flex;
	padding: 6px 10px;
	width: fit-content;
}

@media (max-width: 900px) {
	.ngt-hero h1 {
		font-size: 38px;
	}

	.ngt-grid-3,
	.ngt-grid-4,
	.ngt-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.ngt-hero,
	.ngt-section,
	.ngt-cta {
		padding: 40px 18px;
	}

	.ngt-hero h1,
	.ngt-section h1 {
		font-size: 32px;
	}

	.ngt-section h2,
	.ngt-cta h2 {
		font-size: 28px;
	}

	.ngt-grid-3,
	.ngt-grid-4,
	.ngt-steps,
	.ngt-form-grid {
		grid-template-columns: 1fr;
	}

	.ngt-actions {
		align-items: stretch;
		flex-direction: column;
	}
}
