/* Conteneur principal en flexbox */
.content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    justify-content: space-between;
}

/* Images à gauche */
.left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-left: 0;
    padding-left: 0;
}

/* Assurez-vous que les styles appliqués sont corrects */
.left img {
    width: 100%; /* L'image s'adapte à la largeur du conteneur */
    max-width: 350px; /* Limite la taille des images */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
    margin-bottom: 1rem; /* Espace entre les images */
    margin-left: 100px;
}

/* Partie droite du contenu */
.right {
    display: flex;
    flex-direction: column;
    width: 55%;
    gap: 1rem;
    margin-top: 50px;
}

/* Bloc de droite en colonne */
.right {
    display: flex;
    flex-direction: column;
    width: 55%;  /* Largeur du texte */
    gap: 1rem;
}

/* Bloc de texte et garantie */
.garantie-box {
    display: flex;
    justify-content: center;
}

/* Style de la garantie */
.garantie {
    display: flex;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    justify-content: center;
    width: 100%;
}

/* Bloc du texte séparé */
.texte-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Style du texte */
.texte {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Footer */
footer {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 10px 20px;
    box-sizing: border-box;
}

/* Footer style */
.footer>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer img {
    width: auto;
    height: 48px;
    max-width: 100%;
    margin-bottom: 16px;
}

.footer p {
    text-align: center;
    color: #a0aec0;
    margin-bottom: 16px;
    flex: 1;
}

/* Ajustements pour mobile */
@media (max-width: 768px) {
    .content {
        flex-direction: column; /* Empile les éléments sur mobile */
        align-items: flex-start; /* Aligne à gauche */
        padding: 0 1rem; /* Espacement interne */
    }

    /* Les images sont redimensionnées et alignées à gauche sur mobile */
    .left img {
        max-width: 400px; /* Réduit la taille des images sur mobile */
        margin-left: 0; /* Supprime le margin-left */
        margin-right: 0; /* Supprime tout margin à droite */
        row-gap: 200px;
        width: 100%; /* S'adapte à 100% du conteneur */
    }

    .right {
        width: 100%; /* La section droite occupe toute la largeur */
        padding: 1rem; /* Un peu de padding autour du texte */
    }
}