a {
  outline: none;
  text-decoration: none;
  padding: 2px 1px 0;
  font-weight: normal;
}

a:link {
  color: #FF0000;
  font-weight: bold;
}

a:visited {
  color: #FF4D4D;
  font-weight: bold;
}

a:focus {
  text-decoration: underline;
  background: #FF9999;
}

a:hover {
  border-bottom: 1px solid;
  color: #FF6666;
  font-weight: bold;
  background-color: rgba(255, 0, 0, 0.2); /* Surlignage rouge transparent */
}

a:active {
  color: #FFB3B3;
  font-weight: bold;
}

.page-content .content-section .contact-bloc a.button{
	margin-right:10px;
}

/* CF */
div.form-contact-valgrind:before{
	content:none;
}

.form-contact-valgrind {
	margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%; /* Assure que le formulaire prend toute la largeur disponible */
}

.form-contact-valgrind .col-form-2 {
  flex: 1 1 calc(50% - 20px);
  display: flex;
  flex-direction: column;
  text-align: left;
  margin: 0; /* Réinitialise les marges */
}

.form-contact-valgrind label {
  font-weight: 600;
  margin-bottom: 5px;
  text-align: left;
  width: 100%; /* Assure que le label prend toute la largeur */
}

.form-contact-valgrind input,
.form-contact-valgrind textarea,
.form-contact-valgrind select {
  padding: 10px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
  margin: 0; /* Réinitialise les marges */
}

/* Correction pour les checkboxes */
.form-contact-valgrind .checkbox-group {
  display: flex;
  flex-direction: column;
  width: 100%;
	font-size: 14px !important;
}

.form-contact-valgrind .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  padding: 0;/* Enlève le padding */
}

.form-contact-valgrind .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

/* Style spécifique pour les inputs de type checkbox */
.form-contact-valgrind .wpcf7-list-item input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
  flex: 0 0 auto;
}


.form-contact-valgrind textarea{
	height: 100px;
}

.form-contact-valgrind .wpcf7-list-item-label {
  text-align: left;
  flex: 1;
	font-size: 14px !important;
  font-weight: 400;
}

/* Assure que le bouton d'envoi est correctement aligné */
.form-contact-valgrind input[type="submit"] {
  margin-top: 10px;
  width: auto;
}

/* Responsive pour les petits écrans */
@media (max-width: 768px) {
  .form-contact-valgrind .col-form-2 {
    flex: 1 1 100%;
  }
}

.required-fields{
	flex: 1 1 100%; 
	font-size: 0.8em; 
	color: #555; 
	margin-top: 10px;
	text-align:left;
}

input.wpcf7-submit {
  background-color: #ff0000; /* rouge vif */
  color: #ffffff;            /* texte blanc */
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 999px;      /* rend le bouton très arrondi */
  padding: 10px 40px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-align: center;
	height:auto;
}

input.wpcf7-submit:hover {
  background-color: #cc0000; /* couleur plus foncée au survol */
}


/* header */
a.lien-header{
	color:#ffffff !important;
}
a.lien-header:hover{
	background-color:transparent !important;
}