:root {
  --bg: #ffffff;
  --text: #111418;
  --muted: #637588;
  --border: #dce0e5;
  --border-soft: #f0f2f4;
  --brand: #1980e6;
  --radius: 12px;
  --radius-lg: 16px;
  --container: 1200px;
  --bg-light: #ffffff;
  --bg-gray: #f7f9fb;
  --bg-blue: #1980e6;
  --text-dark: #111418;
  --text-light: #ffffff;

}

 

/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Work Sans", "Noto Sans", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 0.75rem;
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin: 0;
}

button {
  font: inherit;
}

