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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #050315;
  background: #fbfbfe;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
