/* Print Styles */
@media print {
  /* Hide elements not needed for printing */
  header, 
  footer, 
  nav, 
  .mobile-menu-btn, 
  .mobile-menu-overlay,
  .back-to-top, 
  .cookie-consent,
  .cta-section,
  form button,
  .social-icons {
    display: none !important;
  }
  
  /* Reset background colors and text colors */
  body, 
  section, 
  .page-header, 
  .card, 
  .value-card, 
  .benefit-card, 
  .stat-card, 
  .testimonial-card, 
  .leadership-card, 
  .contact-card {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
  
  /* Ensure text is readable */
  p, li, h1, h2, h3, h4, h5, h6 {
    color: black !important;
  }
  
  /* Adjust layout for printing */
  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  /* Ensure images are printed properly */
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  
  /* Add page breaks where appropriate */
  section, 
  .card, 
  .value-card, 
  .benefit-card, 
  .stat-card, 
  .testimonial-card, 
  .leadership-card, 
  .contact-card {
    page-break-inside: avoid;
  }
  
  /* Show URLs for links */
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 90%;
    color: #333;
  }
  
  /* Don't show URLs for internal links */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  
  /* Adjust font sizes for printing */
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1 {
    font-size: 24pt;
    margin-bottom: 15pt;
  }
  
  h2 {
    font-size: 20pt;
    margin-bottom: 12pt;
  }
  
  h3 {
    font-size: 16pt;
    margin-bottom: 10pt;
  }
  
  /* Add a print-specific header with URL and date */
  body:before {
    content: "Printed from: " attr(data-url) "\A Date: " attr(data-date);
    display: block;
    text-align: center;
    font-size: 10pt;
    margin-bottom: 20pt;
    white-space: pre;
    color: #666;
  }
}