/* ---------- PRINT.CSS ---------- */
/* Hide everything except the main content when printing */
@media print {
  header, footer, .carousel-dots, .carousel-pause,
  #hamburger, .btn, .dropdown-content, .hamburger {
    display: none !important;
  }

  body {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }

  .container, .page-body, .page-head {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .card, .service-card {
    page-break-inside: avoid;
    border: 1pt solid #ccc;
    padding: 1rem;
    margin-bottom: 1rem;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  img {
    max-width: 100% !important;
    height: auto !important;
  }

  @page {
    margin: 2cm 1.5cm;
    size: A4;
  }
}