/* ========================================
   Privacy Page Specific Styles
   ======================================== */

@import url('main.css');

/* Header */
header {
  background: var(--surface);
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--primary);
}

.back-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

/* Main Content */
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.last-updated {
  color: var(--text-lighter);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.section {
  margin-bottom: 2.5rem;
}

main h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

main p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

main ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

main ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.highlight-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.highlight-box p {
  margin: 0;
  color: var(--text);
}

main a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

main a:hover {
  color: var(--primary-light);
}

/* Responsive */
@media (max-width: 600px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  h1 {
    font-size: 1.6rem;
  }

  main {
    padding: 2.5rem 1.5rem;
  }
}
