/* ========================================
   Reset CSS and Base Styles
   ======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f6f3;
}

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