/* Basic reset and typography */
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #111418;
  background: #fff;
  line-height: 1.6;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-x: clip;
}

/* Ensure all text elements wrap properly */
p, h1, h2, h3, h4, h5, h6, span, div, li, a {
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

/* Main content */
main.site-main {
  padding: 0;
  width: 100%;
  overflow-x: clip;
  padding-top: 33px; /* Account for fixed header */
}
