@media print {  
    header,
    nav,
    footer,
    .zoom-overlay,
    .opening-hours,
    video,
    .logo,
    .button,
    .form-buttons,
    .reservation-form,
    .checkbox-group,
    .radio-group,
    script,
    link[rel="stylesheet"]:not([href*="print.css"]) {
      display: none !important;
    }
  
    body {
      background: white;
      color: black;
      font-family: serif;
      font-size: 12pt;
      line-height: 1.5;
      padding: 20px;
    }
  
    a[href]:after {
      content: " (" attr(href) ")";
      font-size: 90%;
    }
  
    img {
      max-width: 100%;
      height: auto;
      page-break-inside: avoid;
    }
  
    h1, h2, h3 {
      color: black;
      page-break-after: avoid;
    }
  
    .container, .menu, .about, .contact-info, .reservation-text {
      width: 100%;
      max-width: none;
      margin: 0;
      padding: 0;
    }
  
    .pizza-table {
      width: 100%;
      border-collapse: collapse;
    }
  
    .pizza-table td {
      border-bottom: 1px solid #999;
      padding: 10px;
      page-break-inside: avoid;
    }
  
    .pizza-table img {
      max-height: 100px;
    }
  
    .about-text p,
    .reservation-text p,
    .contact-info p {
      margin-bottom: 10px;
    }
  
    @page {
      margin: 20mm;
    }
  }
  