/* Prevent horizontal scroll */
html, body {
  overflow-x: hidden;
}

/* Optional: prevent long tap save on mobile */
img {
  -webkit-touch-callout: none;
}
/* Allow selection for contact details */
a[href^="tel"],
a[href^="mailto"] {
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}