/* =========================================
   about.css – About Page Specific Styles
   ========================================= */

/* ---- Hero Banner ---- */
.about-hero {
    position: relative;
    height: 220px;
    background: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1600&q=80') center 40% / cover no-repeat;
    display: flex;
    align-items: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding-left: 50px;
}

.about-hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

/* ---- Welcome section background ---- */
.about-welcome {
    background: #fff;
}

/* Extra paragraph spacing */
.about-text p+p {
    margin-top: 14px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .about-hero-content {
        padding-left: 20px;
    }

    .about-hero-content h1 {
        font-size: 26px;
    }
}
