/* Example print styles */
body {
  font-family: Arial, sans-serif; /* Choose a legible font */
  font-size: 12pt; /* Adjust font size for readability */
}

/* Hide unnecessary elements */
header, footer, nav, .sidebar {
  display: none;
}

/* Ensure images don't overflow the page */
img {
  max-width: 100%;
  height: auto;
}

