:root {
  color-scheme: light dark;
  /* Dark theme variables */
  --bg: #0a0a0b;
  --bg-gradient: linear-gradient(135deg, #0a0a0b 0%, #1a1a1f 100%);
  --text: #ffffff;
  --text-secondary: #b8b8b8;
  --text-muted: #888888;
  --surface-1: rgba(255, 255, 255, 0.05);
  --surface-2: rgba(255, 255, 255, 0.08);
  --surface-3: rgba(255, 255, 255, 0.12);
  --accent: #6366f1;
  --accent-light: #8b5cf6;
  --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --success: #10b981;
  --warning: #f59e0b;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  --blur: blur(16px);
}

@media (prefers-color-scheme: light) {
  :root[data-theme="system"],
  :root[data-theme="light"] {
    --bg: #ffffff;
    --bg-gradient: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --text: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --surface-1: rgba(255, 255, 255, 0.7);
    --surface-2: rgba(255, 255, 255, 0.8);
    --surface-3: rgba(255, 255, 255, 0.9);
    --accent: #6366f1;
    --accent-light: #8b5cf6;
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --success: #10b981;
    --warning: #f59e0b;
    --border: rgba(0, 0, 0, 0.1);
    --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --blur: blur(16px);
  }
}

:root[data-theme="dark"] {
  --bg: #0a0a0b;
  --bg-gradient: linear-gradient(135deg, #0a0a0b 0%, #1a1a1f 100%);
  --text: #ffffff;
  --text-secondary: #b8b8b8;
  --text-muted: #888888;
  --surface-1: rgba(255, 255, 255, 0.05);
  --surface-2: rgba(255, 255, 255, 0.08);
  --surface-3: rgba(255, 255, 255, 0.12);
  --accent: #6366f1;
  --accent-light: #8b5cf6;
  --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --success: #10b981;
  --warning: #f59e0b;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  --blur: blur(16px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-gradient);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: var(--blur);
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  min-height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 20px;
  transition: all 0.2s ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-text {
  letter-spacing: -0.02em;
}

.logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: all 0.2s ease;
}

.brand:hover .logo {
  transform: scale(1.05);
}

.nav {
  display: none;
  gap: 32px;
  align-items: center;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s ease;
  position: relative;
  padding: 8px 0;
}

.nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav a:hover::after {
  width: 100%;
}

.theme-toggle {
  background: var(--surface-1);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 14px;
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  background: var(--surface-2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .site-header .container {
    padding: 20px 20px;
  }
  
  .nav {
    gap: 40px;
  }
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  min-height: 100vh;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--success);
  color: white;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.hero-title {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.feature-pill {
  background: var(--surface-1);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: var(--blur);
}

.cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Store Badges */
.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  backdrop-filter: var(--blur);
  border: 1px solid var(--border);
  min-width: 180px;
}

.store-badge.available {
  background: var(--accent-gradient);
  color: white;
  border-color: transparent;
}

.store-badge.available:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.store-badge.coming-soon {
  background: var(--surface-1);
  color: var(--text-muted);
  cursor: not-allowed;
}

.store-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.store-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.store-line1 {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.store-line2 {
  font-size: 16px;
  font-weight: 700;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  background: var(--surface-1);
  border: 2px solid var(--border);
  border-radius: 32px;
  padding: 20px;
  box-shadow: var(--shadow-xl);
  backdrop-filter: var(--blur);
  position: relative;
  overflow: hidden;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent-gradient);
  opacity: 0.05;
  border-radius: 30px;
}

.phone-screen {
  width: 200px;
  height: 360px;
  background: var(--bg);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.puzzle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  width: 120px;
  height: 120px;
}

.puzzle-tile {
  background: var(--accent-gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.puzzle-empty {
  background: var(--surface-2);
  border-radius: 8px;
  border: 2px dashed var(--border);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  backdrop-filter: var(--blur);
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  background: var(--surface-2);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Screenshots */
.screens-section {
  background: var(--surface-1);
  border-radius: 32px;
  margin: 40px 0;
  backdrop-filter: var(--blur);
}

.screenshots-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.screenshot-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.screenshot-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.screenshot-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 16px 16px 0 0;
  display: block;
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s ease;
  background: var(--surface-3);
}

.screenshot-card:hover .screenshot-image {
  transform: scale(1.02);
}

.screenshot-caption {
  padding: 16px;
  font-weight: 600;
  text-align: center;
  color: var(--text);
  background: var(--surface-1);
  border-radius: 0 0 16px 16px;
}

/* Download Section */
.download-section {
  background: var(--surface-1);
  border-radius: 32px;
  margin: 40px 0;
  backdrop-filter: var(--blur);
}

.download-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.platform-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  backdrop-filter: var(--blur);
}

.platform-card.available {
  border-color: var(--success);
  background: linear-gradient(135deg, var(--surface-2) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.platform-card.coming-soon {
  border-color: var(--warning);
  background: linear-gradient(135deg, var(--surface-2) 0%, rgba(245, 158, 11, 0.1) 100%);
}

.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.platform-status {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.platform-card.available .platform-status {
  background: var(--success);
  color: white;
}

.platform-card.coming-soon .platform-status {
  background: var(--warning);
  color: white;
}

.platform-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 16px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  backdrop-filter: var(--blur);
}

.store-btn.primary {
  background: var(--accent-gradient);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow);
}

.store-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.store-btn.disabled {
  background: var(--surface-3);
  color: var(--text-muted);
  cursor: not-allowed;
}

.coming-soon-text {
  color: var(--text-muted);
  font-size: 14px;
  font-style: italic;
}

/* Roadmap */
.roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.roadmap-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: var(--blur);
  transition: all 0.3s ease;
}

.roadmap-item:hover {
  transform: translateX(4px);
  background: var(--surface-2);
}

.roadmap-status {
  font-size: 24px;
  min-width: 32px;
}

.roadmap-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.roadmap-content p {
  color: var(--text-secondary);
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 12px;
  backdrop-filter: var(--blur);
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  list-style: none;
}

.faq-item summary:hover {
  background: var(--surface-2);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  float: right;
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
}

/* Footer */
.site-footer {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  backdrop-filter: var(--blur);
  position: relative;
}

.site-footer .container {
  padding: 48px 20px 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--text);
}

.footer-copy {
  text-align: right;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
}

.developer-credit {
  color: var(--text-muted);
  font-size: 14px;
}

.developer-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.developer-link:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.back-to-top {
  position: absolute;
  top: -20px;
  right: 40px;
  width: 40px;
  height: 40px;
  background: var(--accent-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0; 
    transform: translateY(30px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes tileAppear {
  from {
    opacity: 0;
    transform: scale(0.8) rotateY(180deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-tile {
  animation: tileAppear 0.6s ease-out;
  animation-delay: var(--delay);
  animation-fill-mode: both;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding-top: 100px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .site-header .container {
    padding: 16px 16px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  
  .footer-brand {
    justify-content: center;
  }
  
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .footer-copy {
    text-align: center;
  }
  
  .back-to-top {
    right: 20px;
  }
  
  .phone-mockup {
    transform: scale(0.9);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .site-header .container {
    padding: 12px 16px;
  }
  
  .site-footer .container {
    padding: 32px 16px 20px;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .cta {
    flex-direction: column;
    align-items: center;
  }
  
  .store-badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .back-to-top {
    right: 16px;
  }
}

/* Privacy Policy Page Styles */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 0 80px;
}

.page-header {
  text-align: center;
  margin-bottom: 64px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.last-updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
  font-style: italic;
}

.intro {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.privacy-nav {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 48px;
  backdrop-filter: var(--blur);
}

.privacy-nav h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text);
}

.privacy-nav ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc-counter;
}

.privacy-nav ol li {
  counter-increment: toc-counter;
  margin-bottom: 8px;
}

.privacy-nav ol li::before {
  content: counter(toc-counter) ".";
  color: var(--accent);
  font-weight: 600;
  margin-right: 12px;
  min-width: 24px;
  display: inline-block;
}

.privacy-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.privacy-nav a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.privacy-section {
  margin-bottom: 48px;
  padding: 32px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: var(--blur);
}

.privacy-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}

.privacy-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 12px;
  color: var(--text);
}

.privacy-section p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.privacy-section ul {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
}

.privacy-section ul li {
  padding-left: 24px;
  margin-bottom: 8px;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.privacy-section strong {
  color: var(--text);
  font-weight: 600;
}

.email-link, .website-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.email-link:hover, .website-link:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.contact-info {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
}

.contact-method {
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.contact-method:last-child {
  margin-bottom: 0;
}

.contact-note {
  font-style: italic;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 16px;
}

.privacy-footer {
  text-align: center;
  padding: 32px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-top: 48px;
}

.privacy-footer p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.back-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.back-link:hover {
  color: var(--accent-light);
  transform: translateX(-4px);
}

/* Responsive Privacy Page */
@media (max-width: 768px) {
  .privacy-content {
    padding: 100px 0 60px;
  }
  
  .privacy-section {
    padding: 24px;
    margin-bottom: 32px;
  }
  
  .privacy-nav {
    padding: 24px;
  }
  
  .contact-method {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .privacy-content {
    padding: 90px 0 40px;
  }
  
  .privacy-section {
    padding: 20px;
  }
  
  .privacy-nav {
    padding: 20px;
  }
  
  .page-header {
    margin-bottom: 40px;
  }
}
