/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, 
               "Helvetica Neue", Arial, sans-serif;
}

body {
  background: #ffffff;
  color: #2c3e50;
  line-height: 1.6;
}

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