body {
    margin: 0;
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
    font-weight: bold;
    color: #5A8B39;
}
a:hover {
    text-decoration: none;
    color: #CC9B00;
}

h1 {
    color: #5A8B39;
}
h2 {
    color: #CC9B00;
}

.text-center {
    text-align: center;
}

/* CONTENEUR GLOBAL */
.container {
    max-width: 1300px;
    min-height: 60vh;
    margin: 30px auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* region HEADER */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background: white;
    position: sticky;
    top: 0;
    z-index: 10;

    border-bottom: 1px solid #eee;
}

.header .center {
    text-align: center;
}

.logo {
    height: 60px;
}

.header .right img {
    margin-left: 10px;
}
/* endregion HEADER */

/* INTRO */
.intro {
    text-align: center;
    padding: 40px 20px;
    font-size: 1.2em;
}

/* region home */
.blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 40px 20px;
}

.block {
    flex: 0 1 300px; /* base 300px */
    background: #CC9B00;
    color: white;
    border-radius: 14px;
    padding: 28px;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;

    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.block:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    background: #5A8B39;
    color: #fff;
}

.block h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.block img {
    max-width: 250px;
    max-height: 120px;
    margin: auto;
    margin-bottom: 8px;
}

.block p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}
/* endregion home */

/* region FOOTER */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
    background: #f2f2f2;
}

.qr {
    height: 100px;
}
/* endregion FOOTER */

/* region RESPONSIVE */
/* tablette */
@media (max-width: 1100px) {
    .blocks {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* mobile */
@media (max-width: 768px) {
    .container, .footer {
        max-width: 100%;
    }

    .container {
        margin: 10px;
        border-radius: 12px;
    }

    .header, .footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .blocks {
        grid-template-columns: 1fr;
    }
}
/* endregion RESPONSIVE */

.text-left {
    text-align: left;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

ul li img {
    vertical-align: middle;
}
ul li {
    margin-bottom: 5px;
}

.zone-image .img {
    padding: 20px;
}
.zone-image img {
    max-width: 100%;
}