/* Styles pour le formulaire de contact */
#contact {
    padding: 100px 0;
  }
  
  #contact h2 {
    margin-bottom: 30px;
  }
  
  #contact .form-group {
    position: relative;
  }
  
  #contact input[type="text"],
  #contact input[type="email"],
  #contact textarea {
    border: none;
    border-bottom: 2px solid #010C4E;
    width: 100%;
    padding: 10px 0;
    margin-bottom: 20px;
  }
  
  #contact input[type="text"]:focus,
  #contact input[type="email"]:focus,
  #contact textarea:focus {
    outline: none;
    border-bottom-color: #010C4E;
  }
  
  #contact button[type="submit"] {
    background-color: #010C4E;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
  }
  
  #contact button[type="submit"]:hover {
    background-color: #fff;
    color: #010C4E;
    transition: 0.3s;
  }

  /* Styles pour la ligne rouge des champs vides */
 #contact input.empty,
 #contact textarea.empty {
  border-bottom-color: red !important;
}

  
  /* Media query pour la version mobile */
  @media (max-width: 767px) {
    #contact .form-group {
      width: 100%;
    }
  }
  