/* Modern, clean stylesheet for privacy pages matching app palette */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background-color: #f8fafc;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-top: 40px;
  margin-bottom: 40px;
}

h1 {
  color: #1e293b;
  margin-bottom: 30px;
  text-align: center;
  font-size: 2.2em;
  font-weight: 300;
}

h2 {
  color: #1e293b;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.4em;
  font-weight: 500;
}

h3 {
  color: #1e293b;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.2em;
  font-weight: 500;
}

p {
  margin-bottom: 15px;
  color: #1e293b;
}

ul,
ol {
  margin-bottom: 15px;
  padding-left: 30px;
}

li {
  margin-bottom: 8px;
  color: #1e293b;
}

a {
  color: #b8860b;
  text-decoration: none;
}

a:hover {
  color: #9a7209;
  text-decoration: underline;
}

.contact-info {
  background-color: #f8fafc;
  padding: 20px;
  border-radius: 6px;
  margin-top: 30px;
  border-left: 4px solid #b8860b;
}

.contact-info p {
  margin-bottom: 10px;
  color: #64748b;
}

.contact-info strong {
  color: #1e293b;
}

.language-switch {
  text-align: center;
  margin-bottom: 30px;
  padding: 15px;
  background-color: #f8fafc;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.language-switch a {
  color: #b8860b;
  text-decoration: none;
  margin: 0 10px;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}

.language-switch a:hover {
  background-color: #b8860b;
  color: #ffffff;
  border-color: #b8860b;
}

.language-switch a.current {
  background-color: #b8860b;
  color: #ffffff;
  border-color: #b8860b;
}

.last-updated {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.9em;
}

/* Emphasis styling */
em {
  color: #1e293b;
  font-style: italic;
}

strong {
  color: #1e293b;
  font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .container {
    margin: 20px 10px;
    padding: 15px;
  }

  h1 {
    font-size: 1.8em;
  }

  h2 {
    font-size: 1.2em;
  }

  .language-switch {
    padding: 12px;
  }

  .language-switch a {
    margin: 0 5px;
    padding: 6px 12px;
    font-size: 0.9em;
  }
}
