    body {
        margin: 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        background-color: #fffdf6;
    }

    /* --- NAVBAR --- */
    nav.navbar {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        padding: 1rem 0;
        transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
        background-color: transparent;
    }

    nav.scrolled {
        background-color: rgba(33, 37, 41, 0.9);
        backdrop-filter: blur(6px);
    }

    .navbar a.nav-link {
        color: #f8c146 !important;
        font-weight: 500;
    }

    .navbar a.nav-link:hover {
        color: #fff !important;
    }

    /* --- HEADER --- */
    header {
        height: 100vh;
        background: url('img/hausses_fleurs.webp') center/cover no-repeat;
        color: white;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    header::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 1;
    }

    header h1,
    header h2,
    header p {
        position: relative;
        z-index: 2;
    }

    /* --- SECTIONS --- */
    section {
        margin-top: 40px;
        padding: 2rem 2rem;
    }

    .feature {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 3rem;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        background-attachment: fixed;
        background-position: center;
        background-size: cover;
        backdrop-filter: blur(4px);
    }

    /* Image à droite une fois sur deux */
    .feature.reverse {
        flex-direction: row-reverse;
    }

    .featImg {
        width: 100%;
        max-width: 500px;
        max-height: 500px;
        object-fit: cover;
        flex: 1 1 50%;
    }

    .feature-content {
        padding: 2rem;
        flex: 1 1 50%;
    }


    /* Pour que ça reste propre sur mobile */
    /* MEDIA QUERIES (pour l'affichage en colonne sur mobile) */
    @media (max-width: 768px) {
        .feature.reverse {
            flex-direction: column;
            text-align: center;
        }

        .featImg {
            width: 100%;
            max-width: none;
            margin-bottom: 20px;
        }
    }

    /* --- CAROUSEL --- */
    .carousel-item img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    /* --- FOOTER --- */
    footer {
        background: #212529;
        color: white;
        padding: 2rem 1rem;
        text-align: center;
    }

    a {
        color: #f8c146;
    }