body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #222;
  background: #fff8f0;
}

.headerBar {
  position: sticky;
}

main {
  max-width: 960px;
  margin: 90px auto 40px auto;
  padding: 0 20px 60px 20px;
}

.hero {
  background: #ffaa5a;
  color: #3b1d1d;
  border-radius: 16px;
  padding: 40px 32px;
  margin-bottom: 36px;
}

.hero h1 {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 2.2rem;
  margin: 0 0 12px 0;
}

.hero p {
  font-size: 1.15rem;
  max-width: 40rem;
}

.ctaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.cta {
  display: inline-block;
  background: #bd3b3b;
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 8px;
}

.cta.secondary {
  background: white;
  color: #bd3b3b;
  border: 2px solid #bd3b3b;
}

.cta:hover {
  opacity: 0.9;
}

section {
  margin-bottom: 36px;
}

section h2 {
  font-family: 'Be Vietnam Pro', sans-serif;
  color: #bd3b3b;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.stepCard {
  background: white;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.previewRow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.previewRow img {
  width: 100%;
  border-radius: 8px;
  background: #eee;
}

footer {
  text-align: center;
  padding: 24px;
  color: #555;
}

footer a {
  color: #bd3b3b;
}

@media (max-width: 700px) {
  main {
    margin-top: 80px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .appTitle {
    font-size: 22px;
  }
}
