.about-page {
	padding: 140px 60px;
	background-color: #ebebfa;
	color: white;
	font-family: 'Asap Sharp', sans-serif;
}

.about-intro {
	max-width: 720px;
	margin: 0 auto 120px auto;
	text-align: center;
	padding-bottom: 20px;
}

.about-intro .section-title {
	font-family: 'Asap Sharp', sans-serif;
	font-size: 26px;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: #4c4c4c;
	margin: 16px 0 40px 0;
}

.about-intro-text {
	text-align: left;
}

.about-intro-text p {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.85;
	color: black;
	margin-bottom: 26px;
}

.about-intro-text p:last-child {
	margin-bottom: 0;
}

.section-text {
	display: inline-block;
	font-size: 38px;
	letter-spacing: 3px;
	color: #0059ff;
	margin-bottom: 16px;
	font-weight: 500;
}

.about-intro img {
	width: 100px;
}

.about-subtitle {
	font-family: 'Asap Sharp', sans-serif;
	font-size: 26px;
	font-weight: 600;
	color: #6fa2ff;
	text-align: center;
	padding-bottom: 30px;
	margin-bottom: 50px;
}

.about-audience {
	max-width: 900px;
	margin: 0 auto 120px auto;
}

.audience-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.audience-card {
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.035) 0%,
		rgba(255, 255, 255, 0.015) 100%
	);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 36px;
	transition:
		border-color 0.4s ease,
		transform 0.4s ease;
}

.audience-card:hover {
	border-color: rgba(111, 162, 255, 0.35);
	transform: translateY(-4px);
}

.audience-icon {
	width: 36px;
	height: 36px;
	color: #6fa2ff;
	margin-bottom: 20px;
}

.audience-icon svg {
	width: 100%;
	height: 100%;
}

.audience-card p {
	font-size: 15.5px;
	font-weight: 300;
	line-height: 1.7;
	color: black;
}

.about-programs {
	max-width: 1400px;
	margin: 0 auto;
}

.about-subtitle {
	font-size: 26px;
	font-weight: 600;
	color: #4c4c4c;
	text-align: center;
	margin-bottom: 8px;
}

.about-programs-lead {
	font-size: 15px;
	font-weight: 300;
	line-height: 1.8;
	color: #6b6b6b;
	text-align: center;
	max-width: 620px;
	margin: 0 auto 60px auto;
}

.programs-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

@media (max-width: 1100px) {
	.programs-list {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 620px) {
	.programs-list {
		grid-template-columns: 1fr;
	}
	
}

.program-row {
	background: #ffffff;
	border-radius: 18px;
	padding: 28px 26px 26px 26px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 12px 28px -18px rgba(0, 89, 255, 0.35);
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
	overflow: hidden;
	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease,
		border-color 0.35s ease;
}



.program-row:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 34px -16px rgba(0, 89, 255, 0.4);
	border-color: rgba(0, 89, 255, 0.18);
}



.program-icon {
	width: 46px;
	height: 46px;
	border-radius: 13px;
	background: color-mix(in srgb, var(--accent, #0059ff) 12%, white);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	color: var(--accent, #0059ff);
	flex-shrink: 0;
}

.program-icon svg {
	width: 24px;
	height: 24px;
}

.program-content {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.program-content h4 {
	font-size: 17px;
	font-weight: 600;
	color: #262626;
	margin: 0 0 10px 0;
}

.program-content p {
	font-size: 13.5px;
	font-weight: 300;
	line-height: 1.65;
	color: #6b6b6b;
	margin: 0;
	flex: 1;
}


.about-mission {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	padding-top: 50px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-mark {
	width: 32px;
	height: 32px;
	color: rgba(111, 162, 255, 0.4);
	margin-bottom: 20px;
}

.about-mission p {
	font-size: 19px;
	font-weight: 300;
	font-style: italic;
	line-height: 1.8;
	color: #4c4c4c;
}

.btn_next {
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	border: none;
	background-color: #366ee6;
	border-radius: 10px;
	height: 35px;
	width: 80px;
	font-size: 12px;
	color: white;
	cursor: pointer;
	margin: 30px 0 0 0;
	transition:
		background-color 0.4s ease,
		transform 0.2s ease;
}

.btn_next a {
	text-decoration: none;
	color: white;
}

.btn_next:hover {
	background-color: #074ce0;
	transform: translateY(-2px);
}

@media (max-width: 900px) {
	.about-page { padding: 90px 20px; }
	.about-intro .section-title { font-size: 22px; }
	.audience-grid { grid-template-columns: 1fr; }
	.about-subtitle { font-size: 22px; }
}