    p{
        font-size: 1.2rem!important;
    }
    .ziz-page {
        font-family: Arial, sans-serif;
        color: #0b552f;
    }

    .container {
        width: min(1700px, 90%);
        margin: auto;
    }

    .hero-ziz {
        height: 320px;
        position: relative;
        display: flex;
        align-items: center;
        background: url('<?php echo get_template_directory_uri(); ?>/assets/images/carburants/banner-carburants.jpg') center/cover no-repeat;
    }

    .hero-ziz:after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(11, 85, 47, .95) 28%, rgba(11, 85, 47, .65), transparent);
    }

    .hero-content {
        position: relative;
        z-index: 2;
        width: min(1700px, 90%);
        margin: auto;
        color: white;
    }

    .breadcrumb-ziz {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 18px;
        font-size: 15px;
    }

    .breadcrumb-ziz a {
        color: #fff;
        text-decoration: none;
        opacity: .9;
    }

    .breadcrumb-ziz a:hover {
        color: #f58220;
    }

    .breadcrumb-ziz span {
        color: #fff;
        opacity: .85;
    }

    .hero-content h1 {
        font-size: 55px;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .hero-content p {
        max-width: 600px;
        font-size: 19px;
        line-height: 1.7;
    }

    .values {
        background: white;
        box-shadow: 0 5px 20px #0001;
    }

    .value-box {
        display: flex;
        padding: 35px 0;
        width: min(1700px, 90%);
        margin: auto;
    }

    .value-item {
        position: relative;
        padding: 0 40px;
        display: flex;
        gap: 23px;
        align-items: center;
        flex: 1;
    }

    .value-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 10%;
        width: 1px;
        height: 80%;
        background: #d7dce5;
    }

    .value-item span {
        background: #0b552f;
        color: white;
        width: 65px;
        height: 65px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        flex-shrink: 0;
    }

    .value-item h3 {
        font-size: 18px;
        color: #0b552f;
        margin-bottom: 8px;
    }

    .value-item p {
        color: #444;
        line-height: 1.6;
        margin: 0;
    }

    .intro {
        padding: 90px 0;
    }

    .intro-grid {
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 60px;
        align-items: center;
    }

    .intro h2,
    .filiales h2 {
        font-size: 40px;
        margin-bottom: 20px;
        color: #0b552f;
    }

    .intro h2::after,
    .filiales h2::after {
        content: "";
        display: block;
        width: 55px;
        height: 4px;
        background: #f58220;
        margin-top: 15px;
    }

    .intro p {
        font-size: 17px;
        line-height: 1.8;
        color: #555;
    }

    .intro-image img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        border-radius: 18px;
        box-shadow: 0 20px 45px rgba(11, 85, 47, .18);
    }

    .filiales {
        background: #0b552f0a;
        padding: 80px 0;
    }

    .filiales h2 {
        text-align: center;
    }

    .filiales h2::after {
        margin: 15px auto 0;
    }

    .cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 35px #0001;
        position: relative;
        transition: .3s;
    }

    .card:hover {
        transform: translateY(-8px);
    }

    .card img {
        height: auto;
        width: 100%;
        object-fit: cover;
    }

    .card div {
        padding: 25px;
    }

    .card h3 {
        color: #0b552f;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .card p {
        color: #555;
        line-height: 1.6;
    }

    .card a {
        position: absolute;
        right: 20px;
        bottom: 7px;
        background: #0b552f;
        color: white;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .cta {
        background: #0b552f;
        padding: 60px 10%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: white;
        gap: 50px;
    }

    .cta h2 {
        color: white;
        font-size: 34px;
        line-height: 1.4;
        position: relative;
        padding-right: 60px;
    }

    /* Ligne verticale */
    .cta h2::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 90px;
        background: rgba(255, 255, 255, 0.6);
    }

    .cta p {
        max-width: 39%;
        line-height: 26.5px;
    }

    .cta h2 {
        color: white;
        font-size: 34px;
        line-height: 1.4;

    }

    .cta a {
           background: #f58220;
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    flex-shrink: 0;
    }

    @media(max-width:900px) {

        .cards,
        .intro-grid {
            grid-template-columns: 1fr;
        }

        .value-box {
            flex-direction: column;
        }

        .value-item {
            padding: 25px 0;
            border-bottom: 1px solid #d7dce5;
        }

        .value-item:not(:last-child)::after {
            display: none;
        }

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

        .intro-image img {
            height: 300px;
        }

        .cta {
            flex-direction: column;
            gap: 30px;
            text-align: center;
        }
    }
