.accueil-introduction {
    display: flex;
    flex-wrap:nowrap;
    flex-direction:row;
    justify-content:center;
    align-items:stretch;
    margin-top:10px;
  }
  
  .texte-intro{ 
    display:flex;
    flex-wrap:wrap;
    flex-direction: column;
    justify-content:center;
    align-items:center;
    padding:40px;
  }
  

  
  .slogan{
    display:flex;
    flex-wrap:wrap;
    margin-bottom:10px;
  }
  .accueil-expertises{
  padding : 40px;
  }

  .section-contact h2 {
    color: #c99700;
    text-align: center;
    margin-top:10px;
    margin-bottom: 50px;
  }
  
  form {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: auto;
    color: white;
  }
  
  .form-nom-email {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
  
  .form-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }
  
  input,
  textarea {
    padding: 20px;
    border-radius: 3px;
    border: none;
  }
  
textarea {
  width:100%;
}

  label {
    color: #c99700;
    margin-bottom: 10px;
    font-weight: bold;
    text-decoration: underline;
  }
  
  input[type='submit'] {
    width: 200px;
    margin: auto;
    margin-top: 30px;
    border-style:solid;
    border-radius:20px;
    border: white;
  }


  .section-contact {
    display:none;
  }
     
  