.intro {
  white-space: pre-wrap;             /* 줄바꿈 유지 + 자동 줄바꿈 허용 */
  word-break: keep-all;              /* 단어 단위로 줄바꿈 */
  background-color: #fafafa;         /* 살짝 따뜻한 배경 */
  border: 1px solid #e5e7eb;         /* 은은한 테두리 */
  border-radius: 12px;               /* 부드러운 모서리 */
  padding: 30px 40px;                /* 넉넉한 여백 */
  max-width: 900px;                  /* 너무 넓어지지 않게 */
  line-height: 1.8;                  /* 가독성 있는 줄 간격 */
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;  /* 본문체 */
  font-size: 16px;
  color: #1f2937;                    /* 짙은 회색 본문색 */
  text-align: left;                  /* 본문은 왼쪽 정렬 */
  margin: 40px auto;                 /* 중앙 배치 */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* 가벼운 그림자 */
}

.intro em {
  display: block;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  color: #374151;
  margin-bottom: 15px;
}

.intro strong {
  color: #0366d6;
  font-weight: 600;
}
