/* MAIN */
.container {
  padding: 1.5rem 1rem 2rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; 
  align-items: center;
}

.card {  
 
  background-color: #fff7c7;
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.12);
   width: 100%;
  max-width: 420px; /* largeur maquette mobile */
  display: flex;
  flex-direction: column;

}

.card h2 {
  color: #9500a0;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.card p,
.card li {
  font-size: 0.9rem;
  line-height: 1.45;
}

.card ul {
  padding-left: 1.2rem;
}

