.contact {
  background-color: whitesmoke;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 15px rgba(0, 0, 0, 0.1);
  padding: 5rem 1rem;
  border-radius: 1rem;
  margin: 1.5rem;
  max-width: 90rem;    
}

.contact p {
  font-size: 1.125rem;
  color: #374151; 
  text-align: center;
  margin-bottom: 3rem; 
  max-width: 48rem;
  margin-left: auto; 
  margin-right: auto;
  line-height: 1.625; 
  font-family: 'Maison Neue'
}

h3 {
  text-align: center;
  color: #002955;
  font-size: clamp(18px, 2vw, 24px);
  font-family: 'kollektif-BoldItalic';
  font-weight: 800;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center; /* pour centrer globalement */
  padding: 2rem;
}

.contact-container form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-right: 0;
}

input, select, textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  font-size: clamp(14px, 1.5vw, 18px);
}

select:focus {
  outline: none;
  box-shadow: 0 0 0 2px #FEFEE2;
  color: #002955;
  border-color: transparent;
}

textarea {
  min-height: 150px;
}

button {
  background-color: #002955;
  color: white;
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.25rem);
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: clamp(14px, 1.5vw, 18px);
}

button:hover {
  background-color: #FEFEE2;
  color: #002955;
  transform: scale(1.02);
}

.Coordonnees {
  flex: 1 1 250px;
  background-color: #f9f9f9;
  height: 30%;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.Coordonnees p strong {
  text-align: center;
  color: #002955;
  font-size: clamp(14px, 1.5vw, 16px);
}
.Coordonnees p{
  font-size: 1rem;
  color: #374151; 
  text-align: center;
  max-width: 48rem;
  margin-bottom: 15px;
  margin-left: auto; 
  margin-right: auto; 
  font-family: 'Maison Neue'

}
.Coordonnees h3{
  text-align: center;
}

/* Sur grand écran : alignement à gauche */
@media (min-width: 1024px) {
  .Coordonnees {
    text-align: left;
    align-items: flex-start;
  }
}
