.section-langue-avec-image {
    background-color: white;
    padding: 60px 20px;
    border-top: 3px solid #32b298;
    border-bottom: 3px solid #32b298;
  }
  
  
  .container-langue-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* Ajout de padding égal à gauche et à droite */
    box-sizing: border-box;
  }
  
  
  .langue-image-wrapper {
    flex: 1;
    min-width: 280px;
    max-width: 420px;
  }
  
  .langue-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .langue-image:hover {
    transform: scale(1.02);
  }
  
  .formulaire-langue {
    flex: 1;
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 0 1em #e8e6e6, 0 0 1em rgba(8, 8, 8, 0.25);
    max-width: 600px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-left: 40px;
  }
  
  .formulaire-langue:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 1.5em #e8e6e6, 0 0 1.5em rgba(8, 8, 8, 0.3);
  }
  
  .formulaire-langue h2 {
    color: #2e3f51;
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 700;
    font-family: sans-serif;
  }
  
  .formulaire-langue p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    font-family: sans-serif;
  }
  
  .formulaire-langue form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    align-items: center;
  }
  
  .select-langue {
    appearance: none;
    background-color: #f9f9f9;
    background-image: url('https://cdn-icons-png.flaticon.com/512/54/54481.png');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding: 12px 16px;
    padding-right: 42px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-family: inherit;
    min-width: 250px;
    flex: 1;
    transition: border-color 0.3s ease, background-color 0.3s ease;
  }
  
  .select-langue:hover {
    border-color: #32b298;
    background-color: #e6fffa;
  }
  
  .btn-langue {
    background-color: #32b298;
    color: white;
    padding: 12px 20px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all .3s ease-in-out;
    white-space: nowrap;
    width: auto;
    text-transform: uppercase;
  }
  
  .btn-langue:hover {
    background-color: #289f7c;
    transform: scale(1.05);
  }
  
  @media (max-width: 768px) {
    .container-langue-image {
      flex-direction: column;
      gap: 20px;
    }
  
    .langue-image-wrapper,
    .formulaire-langue {
      min-width: 100%;
      margin-left: 0;
    }
  }
  