:root {
  --bg: #f5f4ef;
  --text: #1c1c1c;
  --link: #1a6b3c;
  --max-width: 900px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, 'Libre Baskerville', serif;
  line-height: 1.6;
}

header {
  padding: 28px 20px 0;
  text-align: center;
}

.logo {
  width: 112px;
  height: auto;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px 10vh;
}

.hero {
  background: #ece9df;
  border-radius: 12px;
  padding: 8vh 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.hero .copy {
  flex: 1 1 260px;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  margin-top: 0;
}

.store-badges img {
  display: block;
  margin: 16px auto;
  max-width: 200px;
  height: auto;
}

.hero .demo {
  flex: 1 1 260px;
  text-align: center;
}

.demo img {
  max-width: 100%;
  border-radius: 34px;
}

.faq-item {
  margin-bottom: 28px;
}

.faq-item h3 {
  margin-bottom: 6px;
}

footer {
  text-align: center;
  padding: 40px 20px 60px;
}

a {
  color: var(--link);
}
