/* Privacy Policy Stylesheet */
/* Font imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --background-color: #ffffff;
  --text-color: #333333;
  --light-gray: #f5f5f5;
  --border-color: #e0e0e0;
  --heading-color: #1a365d;
  --link-color: #2980b9;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

/* Headings */
h1, h2, h3, h4 {
  color: var(--heading-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.75rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.3rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.2rem;
}

/* Paragraphs and lists */
p {
  margin-bottom: 1rem;
}

ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

li p {
  margin-bottom: 0.5rem;
}

/* Links */
a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Strong text */
strong {
  font-weight: 600;
  color: var(--primary-color);
}

/* Section styling */
section {
  margin-bottom: 2rem;
}

/* Last updated date */
.last-updated {
  font-style: italic;
  color: #666;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

/* Contact information */
.contact-info {
  background-color: var(--light-gray);
  padding: 1.5rem;
  border-radius: 5px;
  margin-top: 2rem;
}

.contact-info h2 {
  margin-top: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  body {
    padding: 1.5rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  body {
    padding: 1rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.35rem;
  }
}

/* Print styles */
@media print {
  body {
    font-size: 12pt;
    max-width: 100%;
    padding: 0;
  }
  
  h1, h2, h3, h4 {
    page-break-after: avoid;
  }
  
  ul, ol {
    page-break-inside: avoid;
  }
}