/* ------------------------------
   TITRE
------------------------------ */
.apropos-title {
  text-align: center;
  margin-bottom: 40px;
}

.apropos-title h1 {
  color: #1A3D6B;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.apropos-title .apropos-subtitle {
  color: #555;
  font-size: 1.1rem;
}

/* ------------------------------
   GRILLE (4 COLONNES)
------------------------------ */
.apropos-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 colonnes sur grand écran */
  gap: 25px;
  margin-top: 40px;
  margin-bottom: 60px; /* Bel espace avant le bloc contact */
}

/* ------------------------------
   BLOCS
------------------------------ */
.apropos-block {
  background: #f5f8fc;
  padding: 25px;
  border-radius: 6px;
  border-left: 4px solid #1A3D6B;
  
  display: flex;
  flex-direction: column;
  min-height: 230px;
}

.apropos-block h2 {
  color: #1A3D6B;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.apropos-block p {
  color: #444;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* ------------------------------
   RESPONSIVE TABLETTE & MOBILE
------------------------------ */
@media (max-width: 1024px) {
  .apropos-container {
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur tablette */
  }
}

@media (max-width: 600px) {
  .apropos-container {
    grid-template-columns: 1fr; /* 1 seule colonne sur mobile */
    gap: 15px;
  }

  .apropos-block {
    min-height: auto; /* S'adapte au contenu sur les petits écrans */
    padding: 20px;
  }
}