.about-hero 
{
	background: linear-gradient(135deg, rgba(35,47,62,0.95), rgba(35,47,62,0.85)), 
				url('../images/splash.jpg') center/cover;
	color: white;
	padding: 100px 0 80px;
	margin-top: 76px;
}

.about-section 
{
	padding: 60px 0;
}

.about-section:nth-child(even) 
{
	background-color: #f8f9fa;
}

.stat-card 
{
	text-align: center;
	padding: 30px;
	border-radius: 10px;
	background: white;
	box-shadow: 0 3px 15px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.stat-card:hover 
{
	transform: translateY(-5px);
}

.stat-number 
{
	font-size: 3em;
	font-weight: bold;
	color: #ff9900;
	margin-bottom: 10px;
}

.value-card 
{
	padding: 30px;
	border-left: 4px solid #ff9900;
	background: white;
	border-radius: 5px;
	margin-bottom: 20px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-card h4 
{
	color: #232f3e;
	margin-bottom: 15px;
}

.timeline 
{
	position: relative;
	padding-left: 50px;
}

.timeline::before 
{
	content: '';
	position: absolute;
	left: 15px;
	top: 0;
	bottom: 0;
	width: 3px;
	background: #ff9900;
}

.timeline-item 
{
	position: relative;
	margin-bottom: 30px;
}

.timeline-item::before 
{
	content: '';
	position: absolute;
	left: -42px;
	top: 5px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #ff9900;
	border: 3px solid white;
	box-shadow: 0 0 0 3px #ff9900;
}

.team-member 
{
	text-align: center;
	padding: 20px;
}

.team-member img 
{
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 15px;
	border: 5px solid #ff9900;
}

.cta-section 
{
	background: linear-gradient(135deg, #232f3e, #37475a);
	color: white;
	padding: 60px 0;
	text-align: center;
}


@media (max-width: 768px) 
{
	.about-hero
	{
		margin-top: 136px;
	}
}