 @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --primary: #1a4a8a;
    --primary-light: #e8f0fb;
    --accent: #2d6fd4;
    --text: #1e2329;
    --text-muted: #6b7280;
    --border: #dde3ec;
    --bg: #f5f7fa;
    --white: #ffffff;
    --radius: 8px;
  }


  /* Layout */
  .container_privacy_policy {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* TOC */
  .toc {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin: 32px auto;
    max-width: 860px;
    padding: 0 20px;
    overflow: hidden;
  }
  .toc-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    font-weight: 700;
    font-size: 15px;
    color: var(--primary);
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    user-select: none;
  }
  .toc-header svg { flex-shrink: 0; }
  .toc-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px 20px;
    padding: 14px 0;
  }
  .toc-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.15s;
  }
  .toc-list a:hover { color: var(--accent); }
  .toc-list a .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
  }

  /* Sections */
  .section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
  }
  .section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    background: #fafbfd;
  }
  .section-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
  }
  .section-body {
    padding: 20px 24px;
    font-size: 15px;
    color: #374151;
    line-height: 1.85;
  }

  /* Sub items */
  .sub-list { margin-top: 12px; }
  .sub-item {
    display: flex;
    gap: 10px;
    padding: 6px 0;
  }
  .sub-label {
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    min-width: 20px;
  }

  /* Notice box */
  .notice-box {
    background: var(--primary-light);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 14px 16px;
    margin: 12px 0;
    font-size: 15px;
    color: #1e3a6e;
  }
  .notice-box strong { color: var(--primary); }

  /* Info card */
  .info-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-top: 14px;
  }
  .info-card .card-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
  }
  .info-row {
    display: flex;
    gap: 12px;
    padding: 5px 0;
    font-size: 15px;
  }
  .info-row .key {
    color: var(--text-muted);
    flex-shrink: 0;
    width: 80px;
  }
  .info-row .val { color: var(--text); font-weight: 500; }

  /* Agency list */
  .agency-list { margin-top: 12px; }
  .agency-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
  }
  .agency-item:last-child { border-bottom: none; }
  .agency-item .ag-label {
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    width: 160px;
  }

  /* No-data */
  .no-data {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 15px;
    padding: 8px 0;
  }
  .no-data::before {
    content: '—';
    color: var(--border);
    font-weight: 700;
  }



  @media (max-width: 600px) {
    .toc-list { grid-template-columns: 1fr; }
    .section-body { padding: 16px; }
    .agency-item { flex-direction: column; gap: 2px; }
    .agency-item .ag-label { width: auto; }
  }