    .container {
      display: flex;
      width: 100%;
      border: 1px solid #ccc; /* juste pour visualiser les bords */
    }

    .image-div {
      width: 10%;
      padding: 10px;
      display: flex;
      align-items: center; /* centrage vertical */
      justify-content: center; /* centrage horizontal, optionnel */
    }

    .image-div img {
      width: 100%; /* pour que l'image occupe toute la div */
      height: auto;
    }

    .texte-div {
      width: 90%;
      padding: 10px;
      box-sizing: border-box;
    }
