.contact-section {
  max-width: 700px;
  margin: 60px auto;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-section h1 {
  text-align: left;
  font-size: 2em;
  color: #003366;
  margin-bottom: 10px;
}

.contact-section p {
  color: #666;
  margin-bottom: 25px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  flex: 1;
}

input, textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.3s;
}

input:focus, textarea:focus {
  border-color: #003366;
  outline: none;
}

button {
  background: #045811ff;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #32047cff;
}

/* Chers internautes*/

      /* Conteneur pour centrer le h2 avec les lignes */
.titre-lignes {
  display: flex;
  align-items: center; /* aligne verticalement */
  justify-content: center;
  gap: 10px; /* espace entre le texte et les lignes */
  margin: 20px 0;
}
  /* Style pour les lignes */
.ligne-bleue,
.ligne-rouge {
  width: 2cm;
  height: 4px; /* épaisseur de la ligne */
}

/* Couleurs spécifiques */
.ligne-bleue {
  background-color: blue;
}

.ligne-rouge {
  background-color: green;
}
  /** Fin chers internaute */