@charset "utf-8";

/* =============================================================================
   Fonts
   - 주의: Noto Sans KR을 쓰려면 별도 로드 필요(구글폰트/로컬 등)
============================================================================= */
@font-face {
  font-family: "SUIT-Regular";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2")
  format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "KCCHyerim-Regular";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/2411-3@1.0/KCCHyerim-Regular.woff2")
  format("woff2");
  font-weight: 400;
  font-style: normal;
}

/* =============================================================================
   Tokens
============================================================================= */
:root {
  --main-navi: #204b62;

  --bg: #f9f9f9;
  --surface: #fff;
  --text: #333;
  --muted: #888;

  --wrapper-max: 900px;
  --radius: 12px;
  --shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

/* =============================================================================
   Base / Reset
============================================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
ol { list-style: none; }

a {
  text-decoration: none;
  color: var(--text);
}

img { vertical-align: bottom; }

/* =============================================================================
   Page Base
============================================================================= */
html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans KR", sans-serif;
  background: var(--bg);
  color: var(--text);
  padding: 40px 20px;
}

/* =============================================================================
   Privacy Page
============================================================================= */
.privacy-wrapper {
  max-width: var(--wrapper-max);
  margin: 0 auto;
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.privacy-logo {
  text-align: center;
  margin-bottom: 30px;
}

.privacy-logo img {
  width: 220px;
  max-width: 80%;
  height: auto;
}

.privacy-title h1 {
  font-size: 28px;
  color: #1d4b5a;
  margin-bottom: 10px;
  text-align: center;
}

.effective-date {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 30px;
}

.privacy-content h2 {
  font-size: 20px;
  margin-top: 30px;
  color: var(--main-navi);
}

.privacy-content p,
.privacy-content li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.privacy-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
  list-style: disc;
}

/* =============================================================================
   Responsive
============================================================================= */
@media (max-width: 768px) {
  body { padding: 30px 14px; }

  .privacy-wrapper { padding: 25px; }

  .privacy-title h1 { font-size: 22px; }

  .privacy-content h2 { font-size: 18px; }

  .privacy-content p,
  .privacy-content li { font-size: 14px; }
}
