body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

/*----------------------------------------------*/
/*----------------------------------------------*/
/*----------------------------------------------*/
/*----------------------------------------------*/
/*----------------------------------------------*/

/*----------------------------------------------*/
/*----------------------------------------------*/
/*----------------------------------------------*/
/*----------------------------------------------*/
/*----------------------------------------------*/
/*----------------------------------------------*/
/* Style pour le bandeau "Fini les traces" */
.clean-section {
    background-color: #004ee3;
    color: white;
    padding: 60px 20px;
    text-align: center;
    width: 100%;
    margin: 0 auto 40px;
}

.clean-section h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.clean-subtitle {
    font-size: 1.3rem;
    margin-top: 30px;
    opacity: 0.9;
}

.clean-images {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.clean-image {
    width: 400px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: none;
}

.clean-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*----------------------------------------------*/
/*----------------------------------------------*/
/*----------------------------------------------*/
/*----------------------------------------------*/
/*----------------------------------------------*/
/*----------------------------------------------*/




/*----------------------------------------------*/
/*----------------------------------------------*/
/*----------------------------------------------*/
/*----------------------------------------------*/
/*----------------------------------------------*/
/*----------------------------------------------*/
/* Section Devis - Version corrigée */
.devis-section {
    background-color: #004ee3;
    color: white;
    /* coins plus arrondis */
    border-radius: 60px;
    width: 90%;
    margin: 80px auto;
    /* plus d'espace vertical */
    padding: 80px 60px;
    /* padding plus généreux */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    overflow: hidden;
    /* important pour que l'image ne dépasse pas */
}

.devis-text {
    flex: 1;
    min-width: 400px;
    z-index: 2;
    /* pour être au-dessus de l'image */
}

.devis-text h2 {
    font-size: 3.5rem;
    /* titre beaucoup plus grand */
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
}

.devis-text p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.4;
    opacity: 0.95;
}

.devis-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.4;
    opacity: 0.95;
    max-width: 550px; /* Ajustez cette valeur selon vos besoins */
    word-wrap: break-word;
}

.btn-devis {
    display: inline-block;
    padding: 18px 45px;
    /* bouton plus grand */
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    color: #004ee3;
    background-color: white;
    border: 3px solid white;
    transition: all 0.3s ease;
    text-transform: uppercase;
    /* texte en majuscules */
    letter-spacing: 1px;
}

.btn-devis:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-2px);
}

.devis-image {
    position: absolute;
    right: 60px;
    bottom: 50px;
    width: 450px;
    height: 400px;
    z-index: 1;
}

.devis-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    transform: scale(1);
    object-fit: contain;
    object-position: bottom right;
}

.devis-section .star-icon {
    color: white;
    font-size: 3rem;
    /* étoile plus grande */
    vertical-align: middle;
    margin-left: 10px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    /* effet lumineux */
}

/* Responsive pour la section devis */
@media (max-width: 768px) {
    .devis-section {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
        gap: 30px;
    }

    .devis-text {
        min-width: auto;
    }

    .devis-text h2 {
        font-size: 2.5rem;
    }

    .devis-section {
        height: auto;
        margin: 80px auto;
        padding: 50px 30px;
    }

    .devis-image {
        position: relative;
        right: auto;
        bottom: auto;
        width: 250px;
        height: 300px;
        transform: none;
    }

    .devis-image img {
        min-height: 300px;
        transform: none;
    }
}

/*----------------------------------------------*/
/*----------------------------------------------*/
/*----------------------------------------------*/
/*----------------------------------------------*/
/*----------------------------------------------*/
/*----------------------------------------------*/
