/* Info Page Layout */
.info-page-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 900px;
	margin: 60px auto;
	padding: 40px 30px;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 4px 32px rgba(20,36,61,0.08);
}
.info-content {
	flex: 1;
	padding-right: 40px;
}
.info-content h1 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 18px;
	color: #14243d;
}
.info-content p {
	font-size: 1.15rem;
	color: #444;
	margin-bottom: 12px;
}
.home-icon-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	background: #f5f6fa;
	border-radius: 50%;
	box-shadow: 0 2px 12px rgba(20,36,61,0.07);
	transition: background 0.2s;
	text-decoration: none;
}
.home-icon-link:hover {
	background: #e6e8ee;
}
.home-icon-link i {
	font-size: 2.2rem;
	color: #14243d;
}

/* Decorative images removed */

/* Floating action button to go Home */
.home-fab {
		position: fixed;
		right: 22px;
		top: calc(50% - 32px);
		bottom: auto;
		z-index: 20;
}

/* Visually hidden but accessible text */
.sr-only {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0);
	white-space: nowrap; border: 0;
}

/* Responsive tweaks */
@media (max-width: 575px) {
	/* On mobile, keep the FAB bottom-right like common patterns */
	.home-fab { top: auto; bottom: 18px; }
}

/* Footer overrides for Learn page */
.footer-section {
	/* keep the light background set inline but ensure stacking and base color */
	z-index: 999 !important;
	color: #1d3577 !important;
	border-top: none !important;
	background-color: transparent !important;
	box-shadow: none !important; /* remove any residual shadows */
}
.footer-section .color-text-white,
.footer-section a.color-text-white,
.footer-section p,
.footer-section a,
.footer-section i,
.footer-section span {
	color: #1d3577 !important;
}
.footer-section a:hover {
	color: #f26419 !important; /* accent on hover */
}

/* Prevent footer from overlapping content visually */
.page-section-wrp { padding-bottom: 90px; }

/* Make the hero image box slightly shorter on Learn so footer text is visible */
@media (min-width: 992px) {
	.about-section .image-wrapper {
		min-height: calc(100vh - 140px) !important; /* was 100vh via utility class */
	}
	/* Align columns to the top so the image touches the top of the screen */
	.about-section .row.align-items-center {
		align-items: flex-start !important;
	}
	/* Keep section tall enough while still revealing footer */
	.about-section .container-fluid {
		min-height: calc(100vh - 90px);
	}
}
