:root {
  font-family: Inter, sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1;
  font-size: 16px;
  /* Base font size for mobile */
}

@supports (font-variation-settings: normal) {
  :root {
    font-family: InterVariable, sans-serif;
  }
}

body {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  body {
    padding: 0 1rem;
  }
}

@media (min-width: 769px) {
  body {
    padding: 0 2rem;
  }
}