/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 1em; /* 16px base */
  scroll-behavior: smooth;
}

body {
  font-family: arial, helvetica, sans-serif;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Increase base font size on mobile for better readability */
@media (max-width: 768px) {
  html {
    font-size: 1.125em; /* 18px base on mobile */
  }
}
