body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #fff;
  color: #111;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.logo {
  font-weight: bold;
  font-size: 1.1rem;
  color: #111;
}

.nav-links a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.nav-links .btn {
  background-color: #3366ff;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.hero-content {
  max-width: 550px;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.download-btn {
  display: inline-block;
  background-color: #3366ff;
  color: white;
  padding: 0.9rem 1.5rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.download-btn:hover {
  background-color: #244edc;
}

.hero-image img {
  max-width: 360px;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

/* STATS SECTION */
.stats-section {
  padding: 3rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  flex: 1 1 200px;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s ease;
}

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

.stat-card h2 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: #444;
  font-size: 1rem;
  font-weight: 500;
}

/* Color highlights (can tweak or unify if needed) */
.stat-blue h2 { color: #111827; }
.stat-purple h2 { color: #111827; }
.stat-dark h2 { color: #111827; }
.stat-gray h2 { color: #111827; }
