/* Legal Pages (Terms / Privacy) */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #FDFAF8;
  color: #2C2418;
  line-height: 1.8;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

.legal-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.legal-header {
  position: sticky;
  top: 0;
  background: rgba(253, 250, 248, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196, 164, 74, 0.12);
  z-index: 100;
  padding: 16px 0;
}

.legal-logo {
  font-family: 'Georgia', serif;
  font-size: 20px;
  font-weight: 500;
  color: #8B7A2E;
  letter-spacing: 1px;
}

/* Content */
main.legal-container {
  padding-top: 48px;
  padding-bottom: 80px;
}

h1 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.legal-meta {
  font-size: 13px;
  color: #9A8A78;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(196, 164, 74, 0.15);
}

h2 {
  font-size: 17px;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 12px;
  color: #2C2418;
}

h3 {
  font-size: 15px;
  font-weight: 500;
  margin-top: 24px;
  margin-bottom: 8px;
  color: #4A3F2F;
}

h4 {
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  margin-bottom: 6px;
  color: #5A4F3F;
}

p {
  font-size: 14px;
  color: #4A3F2F;
  margin-bottom: 12px;
  line-height: 2;
}

ol, ul {
  font-size: 14px;
  color: #4A3F2F;
  margin-bottom: 12px;
  padding-left: 20px;
  line-height: 2;
}

li {
  margin-bottom: 4px;
}

ul ul, ol ul {
  margin-top: 4px;
  margin-bottom: 4px;
}

hr {
  border: none;
  border-top: 1px solid rgba(196, 164, 74, 0.15);
  margin: 40px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 13px;
}

th, td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid rgba(196, 164, 74, 0.15);
  color: #4A3F2F;
}

th {
  background: rgba(196, 164, 74, 0.06);
  font-weight: 500;
  color: #2C2418;
}

strong {
  font-weight: 500;
}

/* Footer */
.legal-footer {
  border-top: 1px solid rgba(196, 164, 74, 0.12);
  padding: 24px 0;
  text-align: center;
}

.legal-footer p {
  font-size: 12px;
  color: #9A8A78;
}

/* Mobile */
@media (max-width: 480px) {
  h1 { font-size: 20px; }
  h2 { font-size: 16px; }

  table {
    font-size: 12px;
  }

  th, td {
    padding: 8px;
  }
}
