    :root {
        --primary: #04699D;
        --secondary: #ff9800;
        --accent: #7EB5EE;
        --dark: #333;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* body {
        font-family: 'Open Sans', sans-serif;
        color: var(--dark);
        overflow-x: hidden;
    } */
    .hero {
        margin-top: 12vh;
        padding: 2vh 12vh;
    }

    .hero-container {
        position: relative;
        height: 50vh;
        width: 100%;
        border-radius: 2vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        overflow: hidden;
    }

    /* Calque flou en arrière-plan */
    .hero-container::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url('../images/Bivouac/bivouac2.webp');
        background-position-y: 61%;
        background-size: cover;
        background-repeat: no-repeat;
        filter: blur(2px);
        /* Ajuste l'intensité ici */
        transform: scale(1.05);
        /* Pour éviter les bords flous coupés */
        z-index: 0;
    }

    /* Contenu au-dessus du flou */
    .hero-container>* {
        position: relative;
        z-index: 1;
        
    }

    .hero-text {
        text-align: center;
        color: white;
    }

    .hero-text h1 {
        font-weight: bolder;
    }

    /* hero  */

    h1 {
        /* font-family: 'Montserrat', sans-serif; */
        font-size: 3.5rem;
        margin-bottom: 1rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .subtitle {
        font-size: 1.5rem;
        max-width: 700px;
        margin: 0 auto 2rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    section {
        padding: 5rem 0;
    }

    .section-title {
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
    }

    .section-title h2 {
        /* font-family: 'Montserrat', sans-serif; */
        font-size: 2.5rem;
        color: var(--primary);
        display: inline-block;
        margin-bottom: 15px;
    }

    .section-title h2::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--secondary);
        border-radius: 2px;
    }

    .section-subtitle {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 40px;
        font-size: 1.2rem;
        color: #555;
    }

    .program-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .program-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .program-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .card-img {
        height: 220px;
        width: 100%;
        background-size: cover;
        background-position: center;
    }

    .card-content {
        padding: 25px;
    }

    .card-content h3 {
        /* font-family: 'Montserrat', sans-serif; */
        font-size: 1.5rem;
        color: var(--primary);
        margin-bottom: 15px;
    }

    .card-content ul {
        list-style-type: none;
    }

    .card-content li {
        padding: 8px 0;
        padding-left: 30px;
        position: relative;
    }

    .card-content li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 22px;
        height: 22px;
        background: #ef86358d;
        color: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
    }

    .accommodation {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        align-items: center;
        margin-top: 40px;
    }

    .accommodation-text {
        flex: 1;
        min-width: 300px;
    }

    .accommodation-images {
        flex: 1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        min-width: 300px;
    }

    .acc-img {
        height: 200px;
        border-radius: 10px;
        background-size: cover;
        background-position: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .tarif {
        background-color: #7eb4ee60;
        padding: 3rem;
        border-radius: 15px;
        text-align: center;
        font-size: 1.8rem;
        font-weight: bold;
        color: rgb(86, 86, 86);
        width: fit-content;
        margin: 40px auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        position: relative;
        overflow: hidden;
    }

    /* .tarif::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
        transform: rotate(30deg);
    } */

    .tarif span {
        color: var(--secondary);
        font-size: 2.5rem;
    }

    .included {
        text-align: center;
        font-style: italic;
        margin-top: 10px;
        font-size: 1.2rem;
        color: rgb(86, 86, 86);
    }

    @media (max-width: 768px) {
        .hero {
        padding: 0vh;
        }
        h1 {
            font-size: 2.5rem;
        }

        .subtitle {
            font-size: 1.2rem;
        }

        .section-title h2 {
            font-size: 2rem;
        }

        .accommodation-images {
            grid-template-columns: 1fr;
        }

        .tarif {
            font-size: 1.5rem;
            padding: 2rem;
        }

        .tarif span {
            font-size: 2rem;
        }
    }

    .beach-decor {
        text-align: center;
        margin-top: 5vh;
    }

    .beach-icon {
        font-size: 2rem;
        color: var(--secondary-color);
        margin: 0 10px;
        animation: float 3s ease-in-out infinite;
    }

    .beach-icon:nth-child(2) {
        animation-delay: 0.5s;
    }

    .beach-icon:nth-child(3) {
        animation-delay: 1s;
    }

    .beach-icon:nth-child(4) {
        animation-delay: 1.5s;
    }

