/* style général des champs */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 10px;
  color: rgb(68, 68, 68) !important;
  background-color: #fff !important;
  border: 1px solid #ccc !important;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
  margin-bottom: 15px;
}

/* style des textes d’exemple (placeholders) */
input::placeholder,
textarea::placeholder {
  color: rgb(136, 136, 136) !important;
}

/* étiquettes (labels) */
.wpcf7-form label {
  display: block;
  margin-bottom: 6px;
  color: rgb(68, 68, 68);
  font-weight: 500;
}

/* case à cocher */
.wpcf7-checkbox,
.wpcf7-acceptance {
  margin-bottom: 15px;
  display: block;
  color: rgb(68, 68, 68);
}

/* bouton d’envoi */
input[type="submit"] {
  background-color: #004a99;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
  background-color: #0066cc;
}
.wpcf7-form p {
  color: rgb(68, 68, 68);
  font-size: 15px;
  line-height: 1.6;
}
.wpcf7-acceptance label {
  display: flex;
  align-items: center;
  gap: 8px; /* espace entre la case et le texte */
  color: rgb(68, 68, 68);
  font-size: 15px;
  margin-bottom: 15px;
}

.wpcf7-acceptance input[type="checkbox"] {
  margin: 0; /* supprime le petit décalage vertical natif */
}
.wpcf7-form a {
  color: rgb(68, 68, 68) !important;
  text-decoration: underline; /* optionnel : pour rendre le lien évident */
}

.wpcf7-form a:hover {
  color: #004a99 !important; /* ou une autre couleur au survol si tu préfères */
}
.wpcf7-response-output {
  color: #000 !important;           /* texte bien noir */
  font-style: italic;               /* en italique */
  background: transparent !important; /* plus de fond gris/vert */
  border: none !important;          /* supprime le cadre vert */
  padding: 0 !important;            /* plus de marge autour */
  font-size: 20px;
  margin-top: 20px;
}