/* ===== HERO ===== */
.about-hero {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.about-hero h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.about-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 20px;
}

.about-flex {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.about-flex img {
  width: 100%;
  max-width: 500px;
}

.about-text {
  max-width: 500px;
}

.about-text h2 {
  margin-bottom: 15px;
}

/* ===== STATS ===== */
.stats {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
  text-align: center;
}

.stats div {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  width: 120px;
}

/* ===== MISSION ===== */
.mission {
  background: #f9fafb;
  padding: 80px 20px;
  text-align: center;
}

.mission-box {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.mission-card {
  background: #fff;
  padding: 30px;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* ===== WHY SECTION ===== */
.why {
  padding: 80px 20px;
}

.center {
  text-align: center;
  margin-bottom: 40px;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.why-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}