:root {
  --white: #ffffff;
  --primary: #0060d7;
  --secondary: #00a685;
  --accent: #007b14;
  --text-dark: #212121;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--white);
  color: var(--text-dark);
}