/* Privacy Policy Styling */

.privacy-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  min-height: 100vh;
}

/* Navigation */
.privacy-nav {
  margin-bottom: 2rem;
  padding-top: 1rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  transition: color 0.2s ease;
  letter-spacing: 0.02em;
}

.back-link:hover {
  color: var(--accent);
}

.back-link svg {
  transition: transform 0.2s ease;
}

.back-link:hover svg {
  transform: translateX(-3px);
}

/* Privacy Policy Content */
.privacy-policy {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.privacy-policy h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.privacy-policy h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--text);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.5rem;
}

.privacy-policy h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--text);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.privacy-policy p {
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-policy p strong {
  color: var(--text);
  font-weight: 500;
}

.privacy-policy ul {
  list-style: none;
  margin: 1rem 0 1.5rem 0;
  padding-left: 0;
}

.privacy-policy ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.privacy-policy ul li::before {
  content: "•";
  position: absolute;
  left: 0.5rem;
  color: var(--accent);
  font-weight: bold;
}

.privacy-policy ul li strong {
  color: var(--text);
}

.privacy-policy a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.privacy-policy a:hover {
  border-bottom-color: var(--accent);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .privacy-container {
    padding: 1.5rem 1rem 3rem;
  }

  .privacy-policy {
    padding: 2rem 1.5rem;
  }

  .privacy-policy h1 {
    font-size: 2rem;
  }

  .privacy-policy h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }

  .privacy-policy h3 {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .privacy-policy {
    padding: 1.5rem 1rem;
  }

  .privacy-policy h1 {
    font-size: 1.75rem;
  }

  .privacy-policy h2 {
    font-size: 1.25rem;
  }
}
