* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #faf7f2;
  color: #111;
  line-height: 1.5;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 8px;
}

h2 {
  font-size: 1.6rem;
  margin-top: 0;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.tagline {
  font-size: 1.2rem;
  color: #444;
}

.block {
  border: 2px solid #000;
  padding: 20px;
  margin-bottom: 24px;
  background: #fff;
}

.highlight {
  background: #fffbcc;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

.images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.image-placeholder {
  border: 2px dashed #000;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
  background: #f0f0f0;
}

.links a {
  font-weight: bold;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}

.faq {
  margin-bottom: 16px;
}

.support-email a {
  font-size: 1.1rem;
  font-weight: bold;
}

.footer {
  text-align: center;
  font-size: 0.9rem;
  color: #333;
  padding-bottom: 40px;
}

a {
  color: #000;
}
