/* =======================
   ABOUT PAGE - MBAY
   ======================= */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #F8F9FB;
    color: #1f2937;
}

/* HERO */
.about-hero {
    height: 45vh;
    background: url("../images/hero3.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    position: relative;
}

/* overlay */
.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero-content h1 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 10px;
}

.about-hero-content p {
    font-size: 18px;
    color: #f1f1f1;
}

/* CONTAINER */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

/* GRID */
.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
}

/* TEXT */
.about-text h2 {
    color: #E65C00;
    font-size: 28px;
    margin-bottom: 15px;
}

.about-text p {
    line-height: 1.7;
    margin-bottom: 15px;
}

/* FEATURES */
.features {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-weight: 500;
}

.features div {
    background: #CBE9F4;
    padding: 10px;
    border-radius: 8px;
}

/* BOX */
.about-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-top: 4px solid #E65C00;
}

.about-box h3 {
    margin-bottom: 20px;
    color: #E65C00;
}

.box-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.box-item span {
    font-size: 22px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-content h1 {
        font-size: 32px;
    }
}