* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #F9F7E8;
  color: #000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

nav {
  background-color: #F5F5F5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 56px;
}

nav a {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
}

nav a:hover {
  color: #000;
}

nav .brand {
  color: #62BFAD;
  font-weight: 700;
  font-size: 1.1rem;
  margin-right: auto;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #62BFAD;
  margin-bottom: 0.75rem;
}

.subtitle {
  font-size: 1.15rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.feature-img {
  max-width: 800px;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 2rem;
}

.store-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.store-links a {
  display: inline-flex;
  transition: opacity 0.15s;
}

.store-links a:hover {
  opacity: 0.8;
}

/* Content pages */
.content {
  max-width: 680px;
  width: 100%;
  text-align: left;
}

.content h1 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 1.5rem;
}

.content h2 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
}

.content p, .content li {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
}

.content ul {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.content a {
  color: blue;
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 1.25rem;
  font-size: 0.85rem;
  color: #666;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
