body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fff;
  color: #222;
}

header.hero {
  text-align: center;
  padding: 60px 20px 40px 20px;
  background: #fff8f0;
}
.logo {
  width: 120px;
  margin-bottom: 20px;
}
.tagline {
  font-size: 1.3rem;
  color: #FFA500;
  margin-bottom: 20px;
}
.cta-btn {
  display: inline-block;
  background: #FFA500;
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
  margin-top: 18px;
}
.cta-btn:hover {
  background: #ff8800;
}

.service-highlights {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 40px auto 0 auto;
  max-width: 900px;
  flex-wrap: wrap;
}
.highlight-card {
  background: #fff8f0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 28px 22px;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
}
.highlight-card h3 {
  color: #FFA500;
  margin-bottom: 10px;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 48px auto 0 auto;
  max-width: 700px;
  flex-wrap: wrap;
}
.stat {
  background: #fff8f0;
  border-radius: 10px;
  padding: 24px 32px;
  text-align: center;
  min-width: 120px;
  margin-bottom: 16px;
}
.stat span {
  display: block;
  font-size: 2.1rem;
  color: #FFA500;
  font-weight: bold;
}
.stat p {
  margin: 8px 0 0 0;
  font-size: 1.05rem;
}

.how-it-works {
  max-width: 700px;
  margin: 48px auto 0 auto;
  padding: 0 20px;
}
.how-it-works h2 {
  color: #FFA500;
  text-align: center;
  margin-bottom: 24px;
}
.how-it-works .steps {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.how-it-works .step {
  background: #fff8f0;
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 150px;
  min-width: 120px;
  max-width: 200px;
  text-align: center;
}
.how-it-works .step span {
  display: inline-block;
  background: #FFA500;
  color: #fff;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.download-app {
  text-align: center;
  margin: 56px auto 0 auto;
  padding: 0 20px;
}
.download-app h2 {
  color: #FFA500;
  margin-bottom: 10px;
}
.download-links {
  margin-top: 18px;
}
.download-btn {
  display: inline-block;
  background: #FFA500;
  color: #fff;
  padding: 10px 22px;
  border-radius: 22px;
  margin: 0 8px 8px 0;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}
.download-btn:hover {
  background: #ff8800;
}

footer {
  background: #fff8f0;
  color: #888;
  font-size: 0.98rem;
  margin-top: 48px;
  padding: 32px 0 16px 0;
  text-align: center;
}
.footer-links {
  margin-bottom: 10px;
}
.footer-links a {
  color: #FFA500;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-social {
  margin-bottom: 10px;
}
.footer-social a {
  color: #FFA500;
  margin: 0 8px;
  text-decoration: none;
}
.footer-social a:hover {
  text-decoration: underline;
}

.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: #FFA500;
  text-decoration: none;
}
.nav-logo-img {
  width: 38px;
  height: 38px;
  margin-right: 10px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}
.nav-links li {
  display: inline-block;
}
.nav-links a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a:focus {
  background: #FFA500;
  color: #fff;
}
@media (max-width: 800px) {
  .nav-container {
    flex-direction: column;
    height: auto;
    padding: 0 10px;
  }
  .nav-links {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 6px;
  }
}

@media (max-width: 900px) {
  .service-highlights, .stats {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  header.hero {
    padding: 40px 10px 24px 10px;
  }
  .logo {
    width: 90px;
  }
  .highlight-card, .stat {
    padding: 18px 10px;
    min-width: 0;
    max-width: 100%;
  }
  .how-it-works .steps {
    flex-direction: column;
    gap: 12px;
  }
  .download-app {
    padding: 0 8px;
  }
}
