section.a-propos .hero {
    height: 500px;
    background: url('/webfiles/img/apropos-hero.jpeg') center center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;

    margin: -50px 0 50px 0;

}

section.a-propos .hero .overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;

}

section.a-propos .hero .container {
    color: #fff;
    text-align: center;
}

#site .a-propos .hero h1,
#site .a-propos .hero h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    line-height: normal;<
}

#site .a-propos .hero h1::after,
#site .a-propos .hero h2::after {
    content: '';
    width: 90px;
    height: 4px;
    background: #1c8c52;
    display: block;
    margin: 18px auto 0 auto;
    border-radius: 20px;
}


section.a-propos .hero .btn-contact {
    display: inline-block;
    background: #1c8c52;
    color: #fff;
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none;

    transition: 0.3s;

    margin: 35px 0 0 0;
}


section.a-propos .hero .btn-contact:hover {
    background: #14663b;

}

section.a-propos p.services {
    line-height: 24px;
    padding-bottom: 20px;
    text-align: center;
}


section.a-propos .activites ul {
    list-style-type: circle;
}

section.a-propos .activites ul li {
    margin-left: 12px;
}




section.a-propos .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

section.a-propos .service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    transition: 0.35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

section.a-propos .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

section.a-propos .service-card i {
    font-size: 42px;
    color: #1c8c52;
    margin-bottom: 20px;
}

section.a-propos .service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1f1f1f;
}

section.a-propos .service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

section.a-propos .stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 80px 0;
}

section.a-propos .stat {
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

section.a-propos .stat span {
    display: block;
    font-size: 54px;
    font-weight: 800;
    color: #1c8c52;
    margin-bottom: 10px;
}

section.a-propos .stat p {
    margin: 0;
    font-size: 18px;
    color: #444;
}




/** Responsive *****************************************/


@media (max-width: 991px) {


    section.a-propos .hero {
        height: 250px;
        margin: -40px 0 0 0;

    }


    #site section.a-propos .hero h1,
    #site section.a-propos .hero h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    section.a-propos .hero .btn-contact {
        padding: 7px 15px;
        margin: 5px 0 0 0;
    }


    section.a-propos .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        margin-top: 60px;
    }

    section.a-propos .service-card {

        padding: 25px 10px;

    }

    section.a-propos .service-card h3 {
        font-size: 17px;
    }

    section.a-propos .service-card p {
        font-size: 12px;
    }

    section.a-propos .service-card i {
        font-size: 20px;
    }

}