/* Styles généraux */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Assure que le body prend toute la hauteur de l'écran */
  }
  
  .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    padding: 20px;
    gap: 20px;
  }
  
  .image-container {
    flex: 1;
  }
  
  .responsive-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .responsive-image2 {
    width: 100%;
    height: auto;
    border-radius: 60px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border: 5px solid #C894A0; /* Ajoute une bordure rose de 3px */
  }
  
  .text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #F8EDEB;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    box-sizing: border-box; /* Pour inclure les padding dans la taille */
    margin-left: 25px;
    margin-right: 25px;
  }
  
  .title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  
  .subtitle {
    font-size: 1.8rem;
    font-weight: bold;
    color: #555;
    text-align: center;
  }
  
  .description {
    font-size: 1.6rem;
    color: #333;
    text-align: center;
    margin-top: 25px;
    text-align: justify;
  }
  
  /* Adaptation pour les téléphones */
  
  @media screen and (max-width: 1680px) {
    .title {
      font-size: 1.5rem;
    }
  
    .subtitle {
      font-size: 1.7rem;
      text-align: center;
    }
  
    .description {
      font-size: 1.3rem;
    }
  
    .seo {
      font-size: 15px;
    }
  }
  
  @media screen and (max-width: 1580px) {
    .title {
      font-size: 1.5rem;
    }
  
    .subtitle {
      font-size: 1.4rem;
      text-align: center;
    }
  
    .description {
      font-size: 1.1rem;
    }
  
    .seo {
      font-size: 10px;
    }
  }
  
  @media screen and (max-width: 1280px) {
    .title {
      font-size: 1.5rem;
    }
  
    .subtitle {
      font-size: 1.rem;
      text-align: center;
    }
  
    .description {
      font-size: 1rem;
    }
  
    .text-container {
      max-width: 90%; /* Texte prend presque tout l'espace sur mobile */
      margin: 0 auto; /* Centrer horizontalement */
    }
  
    .text-container2 {
      max-width: 90%; /* Texte prend presque tout l'espace sur mobile */
      margin: 0 auto; /* Centrer horizontalement */
    }
  }
  
  
  @media screen and (max-width: 1100px) {
    .container {
      flex-direction: column;
      gap: 10px;
      padding: 0;
    }
  
    .responsive-image {
      height: auto; /* Laisse l'image s'adapter */
      padding: 20px;
      border-radius: 30px;
    }

    .text-container {
      height: auto; /* Adapte la hauteur au contenu */
    }
  
    .text-container2 {
      height: auto; /* Adapte la hauteur au contenu */
    }
  
    .title {
      font-size: 1.5rem;
    }
  
    .subtitle {
      font-size: 1.2rem;
      text-align: center;
    }
  }
  
  /* Responsive design pour inverser les sections */
  @media screen and (max-width: 1100px) {
    .container,
    .container.reversed {
      flex-direction: column; /* Empile les éléments en colonne */
    }
  
    /* Correction spécifique pour que l'image 2 passe en dessous du texte */
    .container.reversed .image-container {
      order: 2; 
    }
  }
  
  
  .seo {
    color: #f9f9f9;
  }
  
  @media screen and (max-width: 768px) {
    .seo {
      font-size: 7px;
    }
  }

  .legal {
    text-align: center;
    font-size: 25px;
  }

  .legal p {
    margin-top: 25px;
  }
