* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('../asset/bg.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }
  
  .wrapper {
    display: flex;
    width: 60%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(9px);
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .image {
    width: 40%;
    height: auto;
    object-fit: cover;
    margin-right: 20px;
  }
  
  .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 20px;
  }
  
  .content h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .content p {
    font-size: 16px;
    text-align: left;
    margin-bottom: 10px;
  }
/* ... (autres styles) ... */

.image {
    width: 40%;
    height: auto;
    object-fit: cover;
    object-position: 0 0; /* Ajuste la position de l'image vers la gauche */
    margin-right: 20px;
  }
  
  /* ... (autres styles) ... */
    