/* ================================
   🔹 전체 레이아웃
================================ */
body {
  font-family: 'Noto Sans KR', sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  color: #333;
  line-height: 1.8;
}

main {
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px 20px;
  background: #ffffff;
}


/* ================================
   🔹 제목 스타일 (H1 / H2 / 등)
================================ */
h1, h2 {
  color: #222;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
}

h1 {
  font-size: 32px;
  line-height: 1.3;
}

h2 {
  font-size: 24px;
  position: relative;
  padding-left: 16px;
}

h2::before {
  content: "|";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #e60023;
  font-size: 1.2em;
}


/* ================================
   🔹 기본 텍스트 요소
================================ */
p {
  margin-bottom: 18px;
}

ul {
  margin: 10px 0 25px 22px;
  padding-left: 0;
}

ul li {
  margin-bottom: 10px;
}


/* ================================
   🔹 링크 스타일
================================ */
a {
  color: #0077b6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.internal-links {
  color: #0073e6;
  text-decoration: underline;
  display: inline; /* ✅ 인라인으로 유지 */
}


/* ================================
   🔹 공통 섹션 / 요소 스타일
================================ */
.container {
  max-width: 960px;
  margin: auto;
  padding: 25px;
  background: #fff;
  border-radius: 8px;
}

.section-title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 18px;
  border-left: 6px solid #e60023;
  padding-left: 12px;
}

.highlight {
  background: #e8f4fa;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 16px;
}

.review {
  background: #f1f1f1;
  padding: 12px 16px;
  margin-bottom: 14px;
  border-radius: 6px;
}

.price-list li {
  font-weight: bold;
  margin-bottom: 10px;
}

.faq-block ul li {
  margin-bottom: 14px;
}

.blue {
  color: #0077b6;
  font-weight: 600;
}


/* ================================
   🔹 Intro 전용 스타일
================================ */
.massage-intro {
  background: linear-gradient(to right, #f5f7fa, #ffffff);
  padding: 40px 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.massage-intro h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.massage-intro p {
  font-size: 1.05rem;
  color: #555;
}


/* ================================
   🔹 추천 샵 영역 스타일
================================ */
.recommended-shops h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 40px;
  padding-left: 12px;
  border-left: 5px solid #e60023;
}
