:root {
  --color-text: #4B5563;
  --color-primary: #0077B6;
}
.text-primary {
    color: var(--color-primary);
}

html {
    font-size: 16px;
}
body {
    width: 100%;
    overflow-x: hidden;
    font-size: 1rem;
    background-color: #fff;
    color: var(--color-text);
    font-family: "Inter", sans-serif;
    position: relative;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4 {
    font-family: "Montserrat", sans-serif;
    color: #000;
    font-weight: 700;
}