/* ===== Global Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}

body {
  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Noto Sans KR", "Apple SD Gothic Neo",
               "Malgun Gothic", Arial, sans-serif;
  background: #f8fafc; /* 연한 회색 (원하면 #fff로 변경) */
  color: #111827;
}
