* {
  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(--artemis-slate-grey);
  background-color: var(--artemis-white);
}

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

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

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

a:hover {
  text-decoration: underline;
}

.header-contact {
  clear: both;
}

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

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

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

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

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

.call-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2a7193;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: background 0.3s;
}
.call-button:hover {
  background: #1f3a46;
}
