.about-section {
  display: flex;
  flex-direction: column;
  background-color: white;
  padding: 4rem 2rem;
  min-height: calc(100vh - 160px); /* Hauteur de la page moins navbar et footer */
  justify-content: center;
  align-items: center;
  /*   display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); */
  gap: 2rem;
}
.about-section .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.about-section .row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-section .col-lg-7 {
  text-align: center;
  margin-bottom: 2rem;
}
.about-section .col-lg-7 .about-title {
  color: #2089be;
  font-weight: bold;
  font-size: 2.8rem;
  margin-bottom: 24px;
}
.about-section .col-lg-7 p {
  font-size: 1.1rem;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 18px;
  text-align: justify;
}
.about-section .col-lg-7 p:last-child {
  margin-bottom: 0;
}
.about-section .col-lg-5 {
  display: flex;
  justify-content: center;
}
.about-section img {
  max-width: 100%;
  height: auto;
}
.about-section .cards {
  display: flex;
  gap: 2rem;
}
.about-section .cards .card-engagement {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.about-section .cards .card-engagement:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.about-section .cards .card-engagement img {
  height: 48px;
  margin-bottom: 1rem;
}
.about-section .cards .card-engagement h3 {
  font-size: 1.25rem;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.about-section .cards .card-engagement p {
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 1160px) {
  .about-section .cards {
    flex-direction: column;
    align-items: center;
  }
  .about-section .cards .card-engagement {
    width: 100%;
  }
}

.about {
  background-color: rgba(233, 233, 233, 0.318);
  padding: 3rem 2rem;
  text-align: center;
}
.about p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.button-reclamer-engagement {
  display: flex;
  justify-content: center;
}

.button-engagement {
  width: 300px;
}

@media screen and (max-width: 991px) {
  .text-center {
    display: flex;
    justify-content: center;
  }
  .about-title {
    margin-top: 30px;
  }
}