/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* =========================
   BANNIÈRE
========================= */
.page-banner {
  height: 260px;
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.banner-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* =========================
   SECTION ABOUT
========================= */
.about-section {
  background: #f4f8fc;
  padding: 90px 20px;
}

.about-container {
  max-width: 1100px;
  margin: auto;
}

.about-intro {
  text-align: center;
  margin-bottom: 60px;
}

.about-intro h2 {
  font-size: 2.4rem;
  color: #2e7d32;
  margin-bottom: 16px;
}

.about-intro p {
  font-size: 1.05rem;
  color: #555;
  max-width: 800px;
  margin: auto;
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.about-card {
  background: #fff;
  padding: 35px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.about-card h3 {
  color: #2e7d32;
  margin-bottom: 14px;
}

.about-card p,
.about-card li {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-card ul {
  padding-left: 20px;
}

/* =========================
   STATISTIQUES
========================= */
.stats-section {
  background: #fff;
  padding: 70px 20px;
}

.stats-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  text-align: center;
  gap: 20px;
}

.stat h3 {
  font-size: 2.6rem;
  color: #2e7d32;
  margin-bottom: 6px;
}

.stat p {
  font-size: 1rem;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2.3rem;
  }

  .stats-container {
    flex-direction: column;
  }
}
