.h2-service {
	text-align: center;
	margin-bottom: 20px;
}
.item-main  {
    border-top: 2px solid #67564D;
    padding-top: 20px;
	padding-bottom: 20px;
}
.item-feedback-message {
	font-size: 18px; 
	font-style: italic;
	font-weight: bold;
	padding-bottom: 10px;
}
.item-feedback-title {
	font-size: 16px; 
	
}


form {
  background: #f0f4f8;
  padding: 20px;
  border-radius: 10px;
  max-width: 700px;
  margin-bottom: 30px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

form > div.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
  align-items: center;
  margin-bottom: 15px;
}

form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #444;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="password"]:focus,
form select:focus {
  border-color: #3b82f6;
  outline: none;
  background: #fff;
}

form textarea {
  width: 100%;
  min-height: 150px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  resize: vertical;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

form textarea:focus {
  border-color: #3b82f6;
  outline: none;
  background: #fff;
}

form button[type="submit"] {
  background-color: #3b82f6;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.25s ease;
  margin-top: 10px;
}

form button[type="submit"]:hover {
  background-color: #2563eb;
}


.h2-team {
	text-align: center;
	margin-bottom: 20px;
}
.section-team {
    width: 100%;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9); 
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);	
}
.team-member {
    display: flex;
    justify-content: flex-start; /* Aligner les éléments à gauche */
    align-items: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
	flex-wrap: wrap; /* Ajouté pour la flexibilité sur les petits écrans */
}
.team-member.left {
    flex-direction: row;
}
.team-member.right {
    flex-direction: row;
}
.team-img {
    width: 120px;  
    height: 120px; 
    border-radius: 50%;
    overflow: hidden;  
    margin-right: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;  
}
.team-text {
    max-width: 500px;
    text-align: left;
}
/*.team-member + .team-member, .item-main  {
    border-top: 2px solid #67564D;
    padding-top: 20px;
	padding-bottom: 20px;
}*/
/* Mode téléphone : réduction de la taille de l'image et réorganisation des éléments */
@media screen and (max-width: 768px) {
    .team-member {
        flex-direction: column;  /* Permet aux éléments de s'empiler en colonne sur mobile */
        align-items: center; /* Centrer les éléments */
        gap: 15px; /* Espacement entre l'image et le texte */
    }

    .team-img {
        width: 100px;  /* Réduire la taille des pastilles sur mobile */
        height: 100px; /* Réduire la taille des pastilles sur mobile */
        margin-right: 0; /* Retirer l'espacement à droite sur mobile */
        margin-bottom: 15px; /* Ajouter un espacement sous l'image sur mobile */
        margin-left: auto; /* Centrer l'image horizontalement */
        margin-right: auto; /* Centrer l'image horizontalement */
    }


    .team-text {
        text-align: center;  /* Centrer le texte sur mobile */
    }
}



.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.modal-content .close {
  float: right;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 25px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-content .close {
  float: right;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
}

.modal-content button {
  margin-top: 20px;
  padding: 8px 16px;
  background-color: #0077cc;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.modal-content button:hover {
  background-color: #005fa3;
}


.modal-content form {
  text-align: left;
}

.modal-content label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
  width: 100%;
  padding: 6px;
  margin-top: 4px;
  box-sizing: border-box;
}









.feedback-modal {
  display: none; 
  position: fixed; 
  z-index: 999; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; 
  background-color: rgba(0,0,0,0.4);
  padding-top: 80px;
}
.feedback-modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
}
.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
}
.close:hover {
  color: #000;
}
label {
  display: block;
  margin-top: 10px;
}
input, textarea, select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
}

