/* === GLOBAL LAYOUT === */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Inter', 'Roboto', sans-serif;
  background-color: #ffffff; /* Google gray background */
  color: #202124; /* neutral Google text */
  overscroll-behavior: none;
  overflow-x: hidden;
}

/* === MAIN CONTENT === */
main {
  padding: 32px 48px;
  min-height: 100vh;
  box-sizing: border-box;
}

main {
  flex: 1; /* Pushes footer to the bottom */
}