

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  font-size: 16px;
  color: var(--text-primary);
  background: var(--bg-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
}

h1 { font-size: 51px; line-height: 1.12; }
h2 { font-size: 34px; }
h3 { font-size: 22px; }
p  { font-size: 16px; line-height: 1.7; }


body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
