@charset "iso-8859-1";

 .bloc {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px; /* espace entre texte et image */
      padding: 40px;
      max-width: 1100px;
      margin: auto;
    }

    .bloc-texte {
      flex: 1;
	  color: blue;
      font-family: 'Times New Roman', 'Segoe UI', sans-serif;
    }

    .bloc-image {
      flex: 1;
	  color: blue;
    }

    .bloc-image img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    /* Responsive mobile */
    @media (max-width: 768px) {
      .bloc {
        flex-direction: column;
        text-align: center;
      }


    }

