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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2d2d2d;
  background: #fffaf5;          /* Very light warm peach — reduces eye strain, matches orange theme */
  margin: 0;
  padding: 20px;
}

main {
  max-width: 820px;
  margin: auto;
}

header {
  text-align: center;
  margin: 2rem 0;
}

h1, h2, h3 {
  color: #d94b1a;               /* Softer, richer orange-red — eye-friendly yet bold */
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 2rem;
  margin: 2.5rem 0 1rem;
}

h3 {
  font-size: 1.6rem;
}

p, li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

a {
  color: #d94b1a;               /* Same soft orange for links */
  text-decoration: underline;
}

a:hover {
  color: #b83e12;               /* Darker orange hover */
  text-decoration: none;
}

ul, ol {
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

li {
  margin-bottom: 0.8rem;
}

.cta {
  display: inline-block;
  margin: 2rem 0;
  padding: 14px 32px;
  background: #d94b1a;          /* Soft orange CTA */
  color: white;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.2rem;
  text-decoration: none;
  transition: background 0.3s;
}

.cta:hover {
  background: #b83e12;          /* Darker hover for depth */
  color: rgb(224, 222, 222);
}

footer {
  margin-top: 4rem;
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  border-top: 1px solid #ffd1c2; /* Soft orange-peach border */
  padding-top: 2rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  body {
    padding: 15px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.7rem;
  }
  .cta {
    padding: 12px 24px;
    font-size: 1.1rem;
  }
}