/**
 * About Us — styles from your static page, scoped under .fmd-about-static
 * so they do not affect the theme header/footer.
 */

.fmd-about-static {
	margin: 0;
	font-family: "Inter", sans-serif;
	background: #f9fafc;
	color: #333;
}

.fmd-about-static .about-hero {
	background: linear-gradient(to right, #273c4e, #000428);
	color: #fff;
	padding: 80px 20px;
	text-align: center;
}

.fmd-about-static .about-hero h1 {
	font-size: 3em;
	margin-bottom: 10px;
	margin-top: 0;
}

.fmd-about-static .about-hero p {
	font-size: 1.2em;
	margin-bottom: 0;
}

.fmd-about-static section {
	padding: 60px 100px;
	max-width: 1500px;
	margin-left: auto;
	margin-right: auto;
}

.fmd-about-static .box {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	padding: 60px 120px;
	margin-bottom: 40px;
	animation: fmd-about-fadeInUp 1s ease-in-out;
}

.fmd-about-static h2 {
	color: #273c4e;
	margin-bottom: 20px;
}

.fmd-about-static .about-icons {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.fmd-about-static .icon {
	text-align: center;
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}

.fmd-about-static .icon:hover {
	transform: translateY(-5px);
}

.fmd-about-static .icon i {
	font-size: 3rem;
	color: #273c4e;
	margin-bottom: 10px;
}

@keyframes fmd-about-fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 600px) {
	.fmd-about-static .about-hero h1 {
		font-size: 2rem;
	}
}
