/* ===== BASE STYLES ===== */
/**
 * @file: base/reset.css
 * @description: 기본 스타일 및 레이아웃 정의
 * @components: 전역 스타일, 타이포그래피, 기본 레이아웃
 * @usage: 전체 애플리케이션의 기본 스타일 정의
 */

/* 전역 스타일 */
body {
  font-family: 'Noto Sans KR', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}
