/* Privacy Policy Styles */
:root {
  --primary-color: #2563eb;
  --text-color: #334155;
  --heading-color: #0f172a;
  --bg-color: #f8fafc;
  --card-bg: #ffffff;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  margin: 0;
  padding: 0;
}

.privacy-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.privacy-header {
  text-align: center;
  margin-bottom: 3rem;
}

.privacy-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.privacy-header p {
  color: #64748b;
  font-size: 0.95rem;
}

.privacy-content {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

section {
  margin-bottom: 2.5rem;
}

section:last-child {
  margin-bottom: 0;
}

h2 {
  font-size: 1.5rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

ul li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

strong {
  color: var(--heading-color);
}

.privacy-footer {
  text-align: center;
  margin-top: 3rem;
  color: #94a3b8;
  font-size: 0.875rem;
}

@media (max-width: 640px) {
  .privacy-content {
    padding: 1.5rem;
  }

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