/* 기본 글꼴 및 전체 레이아웃 */
body {
  font-family: 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  line-height: 1.6;
  font-size: 16px;
  color: #333;
  background-color: #f9f9f9;
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

/* 제목 */
h1 {
  font-size: 2em;
  color: #222;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* 링크 */
a {
  color: #007acc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* 목록 스타일 */
ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
}

/* 본문 단락 */
p {
  margin-bottom: 16px;
}

/* 반응형 이미지 (사용할 경우) */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px 0;
}

/* 푸터나 기타 작은 텍스트 */
.small-text {
  font-size: 0.85em;
  color: #777;
  margin-top: 40px;
}
