/* Print Stylesheet for HIFI TECH INDIA */
@media print {
  /* Hide non-essential elements */
  nav,
  footer,
  .whatsapp-button,
  button,
  .no-print,
  video,
  iframe {
    display: none !important;
  }

  /* Reset backgrounds and colors for printing */
  body {
    background: white !important;
    color: black !important;
    font-size: 12pt;
    line-height: 1.5;
  }

  /* Ensure text is readable */
  h1, h2, h3, h4, h5, h6 {
    color: black !important;
    page-break-after: avoid;
  }

  p, li {
    color: black !important;
  }

  /* Show URLs for links */
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #666;
  }

  /* Don't show URLs for internal links */
  a[href^="/"]:after,
  a[href^="#"]:after {
    content: "";
  }

  /* Ensure images fit */
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  /* Page breaks */
  section {
    page-break-inside: avoid;
  }

  /* Remove shadows and gradients */
  * {
    box-shadow: none !important;
    text-shadow: none !important;
    background: transparent !important;
  }

  /* Ensure proper margins */
  @page {
    margin: 2cm;
  }
}
