.legal-page {
  background: #F7F5F2;
  color: #2D2A26;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.75;
}

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

.legal-header {
  background: linear-gradient(135deg, #0F0D0C 0%, #1A1715 50%, #211D1B 100%);
  padding: 48px 0;
  border-bottom: 1px solid #2E2925;
}
.legal-header .container {
  text-align: center;
}
.legal-header h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #B9F548;
  margin-bottom: 12px;
}
.legal-header p {
  font-size: 0.95rem;
  color: #9D928A;
  max-width: 600px;
  margin: 0 auto;
}
.legal-header a {
  color: #FF9278;
  text-decoration: none;
  transition: color 0.3s ease;
}
.legal-header a:hover { color: #B9F548; }

.legal-nav {
  background: #EDEBE8;
  border-bottom: 1px solid #DBD8D5;
}
.legal-nav .container {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  flex-wrap: wrap;
}
.legal-nav .back-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2D2A26;
  text-decoration: none;
  transition: color 0.3s ease;
}
.legal-nav .back-link:hover { color: #B9F548; }

.legal-content {
  padding: 64px 0 48px;
}

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

.legal-page .legal-content section {
  background-color: transparent !important;
}

.toc {
  background: #FFFFFF;
  border: 1px solid #DBD8D5;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 48px;
}
.toc h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2D2A26;
}
.toc ol {
  list-style: none;
  counter-reset: toc-counter;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}
.toc ol li {
  counter-increment: toc-counter;
  font-size: 0.92rem;
}
.toc ol li::before {
  content: counter(toc-counter) ". ";
  font-weight: 600;
  color: #6B635C;
}
.toc ol li a {
  color: #4A4540;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.toc ol li a:hover {
  color: #0F0D0C;
  border-bottom-color: #B9F548;
}

.legal-content .content-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #E8E5E1;
}
.legal-content .content-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.legal-content .content-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F0D0C;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  padding-top: 24px;
}
.legal-content .content-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2D2A26;
  margin: 24px 0 12px;
}
.legal-content .content-section p {
  font-size: 0.95rem;
  color: #4A4540;
  margin-bottom: 16px;
  line-height: 1.8;
}
.legal-content .content-section ul,
.legal-content .content-section ol {
  margin: 0 0 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-content .content-section ul { list-style: disc; }
.legal-content .content-section ol { list-style: decimal; }
.legal-content .content-section li {
  font-size: 0.95rem;
  color: #4A4540;
  line-height: 1.7;
}
.legal-content .content-section strong { color: #0F0D0C; font-weight: 700; }

.legal-footer {
  background: #0F0D0C;
  padding: 40px 0;
  border-top: 1px solid #2E2925;
  text-align: center;
}
.legal-footer p {
  font-size: 0.85rem;
  color: #9D928A;
  margin-bottom: 8px;
}
.legal-footer a {
  color: #B9F548;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.legal-footer a:hover { color: #FF9278; }

@media (max-width: 768px) {
  .legal-content { padding: 48px 0 32px; }
  .toc { padding: 24px; }
  .legal-content .content-section h2 { font-size: 1.3rem; }
  .legal-header { padding: 32px 0; }
}
