/* Fluid Typography and Layout for About Us */
.about-hero {
    position: relative;
    height: 50vh; /* Shorter than home hero, but same style */
    min-height: 400px;
    background: url('https://images.pexels.com/photos/3183186/pexels-photo-3183186.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.about-hero .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.8));
}

.about-hero .hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.about-hero .hero-text h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem); /* Responsive fluid text */
    font-weight: 800;
}

/* Responsive Content Grid */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem); /* Responsive fluid text */
    color: var(--primary);
    font-weight: 700;
}

.underline-left {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 15px 0 30px 0;
}

.lead-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem); /* Responsive fluid text */
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 600;
}

.content-box p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Stat Cards */
.content-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    border-left: 5px solid var(--accent);
}

.stat-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.stat-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Responsive Scaling */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}