/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* ===== Hero Section ===== */
.hero-section {
  height: 280px;
  background: linear-gradient(135deg, #1e88e5, #512da8);
  color: #fff;
  padding: 40px 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.hero-section h1 {
  font-size: 2.2rem;
}
.hero-section p {
  font-size: 1.1rem;
}

/* ===== Stat Cards ===== */
.stat-card {
  padding: 30px 20px;
  border-radius: 12px;
  transition: transform 0.3s;
}
.stat-card:hover {
  transform: translateY(-5px);
}

/* ===== Feature Cards ===== */
.feature-card {
  background-color: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  padding: 20px 16px;
  height: 100%;
  transition: box-shadow 0.2s ease;
}
.feature-card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.feature-card h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.95rem;
  color: #555;
}
.feature-card .btn {
  margin-top: 10px;
}

/* ===== Footer ===== */
footer {
  background-color: #f0f0f0;
  font-size: 0.9rem;
}
