* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #333;
}

.privacy-page {
  min-height: 100vh;
  width: 100%;
  background:
    radial-gradient(circle at 95% 75%, #c8f0f4 0%, rgba(200, 240, 244, 0) 45%),
    radial-gradient(circle at 0% 30%, #d6e4ff 0%, rgba(214, 228, 255, 0) 50%),
    linear-gradient(110deg, #e6ecff 0%, #ffffff 45%, #f5fbff 65%, #d6f3f6 100%);
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.content-wrapper {
  background-color: rgba(255, 255, 255, 0.98);
  width: 100%;
  max-width: 800px;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.back-nav {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.back-nav a {
  color: #6b7280;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}

.back-nav a:hover {
  color: #0cb4ff;
}

.page-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .page-title {
    font-size: 2.25rem;
  }
}

.lead {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.625;
  margin-bottom: 0.5rem;
}

.last-updated {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.quick-nav-box {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 40px;
}

.quick-nav-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 10px;
}

.quick-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-nav-list li {
  margin-bottom: 12px;
}

.quick-nav-list li:last-child {
  margin-bottom: 0;
}

.quick-nav-list a {
  color: #0cb4ff;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s ease;
}

.quick-nav-list a:hover {
  color: #0284c7;
}

.quick-nav-list .arrow {
  font-size: 1.1em;
  color: #94a3b8;
}

.policy-content section {
  margin-bottom: 3rem;
}

.policy-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
  letter-spacing: -0.025em;
}

.policy-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #334155;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content p {
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.policy-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-content li {
  color: #475569;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.policy-content strong {
  color: #0f172a;
  font-weight: 600;
}

.policy-content a {
  color: #0cb4ff;
  text-decoration: none;
  font-weight: 500;
}

.policy-content a:hover {
  text-decoration: underline;
}

.notice-box {
  background-color: #f0f9ff;
  border-left: 4px solid #0cb4ff;
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.notice-title {
  color: #0369a1;
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.notice-body {
  color: #0c4a6e;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .privacy-page {
    padding: 0;
  }

  .content-wrapper {
    padding: 30px 20px;
    border-radius: 0;
    box-shadow: none;
  }

  .policy-content h2 {
    font-size: 1.5rem;
  }
}
