/* === Global Reset and Layout Foundation === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Ensure all headings and paragraphs are clean */
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  box-sizing: border-box;
}

/* Responsive typography adjustment (optional but good) */
@media (max-width: 768px) {
  html {
    font-size: 90%;
  }
}
