/* Privacy Policy - page styles
 * Extracted from inline <style> in privacy.html for CSP compliance (no 'unsafe-inline'). */
:root {
  --burgundy: #722f37;
  --burgundy-light: #8b3a44;
  --cream: #fdf8f3;
  --charcoal: #3d3630;
  --soft-gray: #9e9890;
}

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

body {
  font-family:
    "Segoe UI",
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.8;
}

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

header {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0d6cc;
}

.logo {
  font-size: 48px;
  margin-bottom: 16px;
}

h1 {
  font-family: Georgia, "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 42px;
  color: var(--burgundy);
  margin-bottom: 8px;
}

.last-updated {
  color: var(--soft-gray);
  font-size: 14px;
}

h2 {
  font-family: Georgia, "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 28px;
  color: var(--burgundy);
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--burgundy);
}

h3 {
  font-family: Georgia, "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 22px;
  color: var(--burgundy);
  margin: 30px 0 15px;
}

p {
  margin-bottom: 16px;
}

ul,
ol {
  margin: 16px 0 16px 24px;
}

li {
  margin-bottom: 10px;
}

.highlight-box {
  background: white;
  border-left: 4px solid var(--burgundy);
  padding: 24px;
  margin: 24px 0;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin: 8px 8px 8px 0;
}

.security-badges {
  margin: 24px 0;
}

.contact-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 40px 0;
  text-align: center;
}

.contact-box h3 {
  margin-top: 0;
}

.back-link {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 28px;
  background: var(--burgundy);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s;
}

.back-link:hover {
  background: var(--burgundy-light);
  transform: translateY(-2px);
}

footer {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e0d6cc;
  color: var(--soft-gray);
  font-size: 14px;
}

@media (max-width: 600px) {
  .container {
    padding: 40px 20px;
  }
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 24px;
  }
}
