body {
  padding-top: 30px;
}

/* HERO */
.about-hero {
  height: 45vh;
  padding-top: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

/* Feature Card */
.feature-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* Team */
.team-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
}

/* CTA */
.cta {
  background: #111;
  color: white;
  padding: 40px 0;
}

.stats {
        background: #0f2b3d;
        color: white;
        padding: 50px 0;
        text-align: center;
    }

    .stat-number {
        font-size: 28px;
        font-weight: bold;
    }
