@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --text-color: var(--ng-color-text, #111111);
    --text-color-strong: #111111;
    --text-color-secondary: #222222;
    --text-color-muted: #333333;
    --text-color-inverse: #ffffff;
    --surface-color: #ffffff;
    --surface-inverse: #000000;
    --surface-muted: #ededed;

  --ng-color-bg: var(--surface-color);
  --ng-color-text: var(--text-color-secondary);
  --ng-page-end-bg: var(--surface-muted);
  --page-end-bg: var(--ng-page-end-bg);
}

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

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  color: var(--text-color-secondary);
  background-color: var(--surface-color);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-color);
}

p {
  margin-bottom: 1rem;
  color: var(--text-color-muted);
}

button, input, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

.hidden { display: none !important; }

@media (max-width: 767px) {
  html {
    font-size: 15px;
  }
}

