#seo-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 100vh;
	padding: 0;
	background: #f7f9fb;
	z-index: 9999;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
	color: #2c3e50;
	overflow-y: auto;
}
#seo-content .school-nav {
	background: #ffffff;
	padding: 16px 40px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: center;
	border-bottom: 1px solid #e8ecef;
}
#seo-content .school-nav .logo {
	font-size: 28px;
	font-weight: 700;
	color: #5c6ac4;
	margin: 0;
}
#seo-content .hero-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
	padding: 60px 40px;
	text-align: center;
	color: white;
}
#seo-content h1 {
	font-size: 3em;
	font-weight: 700;
	margin: 0 0 16px 0;
	letter-spacing: -0.5px;
	line-height: 1.2;
}
#seo-content .hero-section .tagline {
	font-size: 1.4em;
	font-weight: 400;
	margin: 0 0 24px 0;
	opacity: 0.95;
}
#seo-content .hero-section .cta-button {
	background: white;
	color: #5c6ac4;
	padding: 14px 32px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1.1em;
	display: inline-block;
	margin-top: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
#seo-content .main-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 40px;
}
#seo-content .intro-text {
	font-size: 1.3em;
	line-height: 1.7;
	margin-bottom: 50px;
	text-align: center;
	color: #4a5568;
}
#seo-content .features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	margin-bottom: 50px;
}
#seo-content section {
	background: white;
	border-radius: 12px;
	padding: 32px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border: 1px solid #e8ecef;
	transition: all 0.3s ease;
}
#seo-content section:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-4px);
}
#seo-content section:nth-child(1) {
	border-top: 4px solid #5c6ac4;
}
#seo-content section:nth-child(2) {
	border-top: 4px solid #48bb78;
}
#seo-content section:nth-child(3) {
	border-top: 4px solid #ed8936;
}
#seo-content section:nth-child(4) {
	border-top: 4px solid #f56565;
}
#seo-content section:nth-child(5) {
	border-top: 4px solid #9f7aea;
}
#seo-content h2 {
	font-size: 1.5em;
	font-weight: 700;
	margin: 0 0 16px 0;
	color: #2d3748;
}
#seo-content h3 {
	font-size: 1.4em;
	font-weight: 700;
	margin: 0 0 16px 0;
	color: #2d3748;
}
#seo-content section p {
	line-height: 1.7;
	font-size: 1em;
	color: #4a5568;
	margin: 0;
}
#seo-content .trust-section {
	background: #5c6ac4;
	padding: 40px;
	text-align: center;
	color: white;
	margin-top: 50px;
	border-radius: 12px;
}
#seo-content .trust-section h3 {
	color: white;
	font-size: 1.8em;
	margin-bottom: 16px;
}
#seo-content .trust-section p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.1em;
}
#seo-content .school-footer {
	background: #2d3748;
	padding: 32px 40px;
	text-align: center;
	color: white;
	margin-top: 60px;
}
#seo-content .school-footer p {
	margin: 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95em;
}
@media (max-width: 768px) {
	#seo-content .school-nav {
		padding: 12px 20px;
	}
	#seo-content .school-nav .logo {
		font-size: 22px;
	}
	#seo-content .hero-section {
		padding: 40px 20px;
	}
	#seo-content h1 {
		font-size: 2em;
	}
	#seo-content .hero-section .tagline {
		font-size: 1.1em;
	}
	#seo-content .hero-section .cta-button {
		padding: 12px 24px;
		font-size: 1em;
	}
	#seo-content .main-content {
		padding: 40px 20px;
	}
	#seo-content .intro-text {
		font-size: 1.1em;
	}
	#seo-content .features-grid {
		grid-template-columns: 1fr;
	}
	#seo-content section {
		padding: 24px;
	}
	#seo-content h2,
	#seo-content h3 {
		font-size: 1.3em;
	}
	#seo-content .trust-section {
		padding: 30px 20px;
	}
	#seo-content .school-footer {
		padding: 24px 20px;
	}
}