* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 1.5rem;
  font-family: var(--font-family);
  scroll-behavior: smooth;
  color: var(--orsystem-slate-grey);
  background-color: var(--orsystem-white);
}

body {
  margin: 0;
  font-family: var(--font-family);
}

/* Typography */
p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--orsystem-smoky-grey);
}

a {
  color: var(--orsystem-steel-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.header-contact {
  clear: both;
}

.bg__lightorange {
  background-color: var(--orsystem-ivory-blush);
}

.bg__lightsand {
  background-color: var(--orsystem-light-sand);
}

.bg__lightblue {
  background-color: var(--orsystem-pale-sky);
}

.bg__lightgray {
  background-color: var(--orsystem-soft-mist);
}

.bg__white {
  background-color: var(--orsystem-white);
}

/* Cookiebot dialog responsive fix */
#ch2-dialog {
  max-width: 100% !important;
  width: auto !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

#ch2-dialog * {
  box-sizing: border-box !important;
}

@media (max-width: 992px) {
  #ch2-dialog {
    width: 95% !important;
    max-width: 95% !important;
    left: 2.5% !important;
    right: 2.5% !important;
    padding: 1rem !important;
  }

  #ch2-dialog .ch2-dialog-content,
  #ch2-dialog .ch2-dialog-body {
    max-width: 100% !important;
    width: 100% !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  #ch2-dialog .ch2-dialog-buttons {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.5rem !important;
  }

  #ch2-dialog .ch2-dialog-actions,
  #ch2-dialog .ch2-dialog-actions-vertical {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }

  #ch2-dialog button {
    width: 100% !important;
    margin: 0 !important;
    margin-bottom: 0.75rem !important;
    height: 38px !important;
  }

  #ch2-dialog button:last-child {
    margin-bottom: 0 !important;
  }
}
