/* --- About Hero Section --- */
.about-hero {
    background: linear-gradient(135deg, #071a2f 0%, #0d2746 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-hero h1 span {
    color: #00C49A;
}

.about-hero .lead {
    font-size: 20px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* --- About Content Section --- */
.about-content {
    padding: 80px 20px;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    color: #071a2f;
    margin-bottom: 25px;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #00C49A;
}

.about-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* --- Stats Grid --- */
.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-item {
    background: #f5f7fb;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: #eef2f8;
}

.stat-item h3 {
    font-size: 36px;
    color: #00C49A;
    margin-bottom: 5px;
}

.stat-item p {
    color: #666;
    font-weight: 600;
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-hero h1 {
        font-size: 36px;
    }
    .about-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}