
/* Gotavi Legal/Policy Standalone Stylesheet */
@font-face {
  font-family: 'Neurial Grotesk Light';
  src: url(../media/'NeurialGrotesk-Light.woff2') format('woff2'),
       url(../media/'NeurialGrotesk-Light.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neurial Grotesk Medium';
  src: url(../media/'NeurialGrotesk-Medium.woff2') format('woff2'),
       url(../media/'NeurialGrotesk-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

body {
  color: #333;
  font-family: 'Neurial Grotesk Light', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

.centered-content {
  max-width: 700px;
  margin: 40px auto;
  padding: 32px 24px;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Neurial Grotesk Medium', Arial, sans-serif;
  color: #222;
  margin: 1.2em 0 0.7em 0;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  font-weight: 600;
}
h2 {
  font-size: 2rem;
  font-weight: 500;
}
h3 {
  font-size: 1.25rem;
  font-weight: 500;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 500;
}

p, ul, ol {
  font-size: 1rem;
  margin-bottom: 1.1em;
  color: #333;
}

ul, ol {
  padding-left: 1.5em;
}

li {
  margin-bottom: 0.5em;
}

a{
color: rgb(2, 217, 151);
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;

  &:hover {
    color: rgb(1, 174, 121);
  }
}

b, strong {
  font-weight: 700;
}
u {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .centered-content {
    padding: 16px 4vw;
    max-width: 98vw;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1rem; }
}