/* CIUARRA Policy Pages Styles */
:root {
  --primary: #000000;
  --secondary: #333333;
  --accent: #666666;
  --background: #ffffff;
  --foreground: #000000;
  --muted: #777777;
  --border: #dddddd;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.header p {
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.125rem;
}

article {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
}

article h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
}

article h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary);
  margin: 1.5rem 0 1rem;
}

article p {
  margin-bottom: 1.25rem;
  color: var(--secondary);
  font-size: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.font-medium {
  font-weight: 500;
}

.text-muted-foreground {
  color: var(--muted);
}

.contact-info {
  background-color: #f3f4f6;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
  border: 1px solid var(--border);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
}

.mt-8 {
  margin-top: 2rem;
}

.text-sm {
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }
  
  article h2 {
    font-size: 1.5rem;
  }
  
  article h3 {
    font-size: 1.125rem;
  }
  
  .container {
    padding: 1rem;
  }
}

/* Print Styles */
@media print {
  body {
    color: black;
    background: white;
  }
  
  .container {
    max-width: none;
    padding: 0;
  }
  
  article {
    break-inside: avoid;
    background: none;
    border: none;
  }
}
