:root {
  --color-navy-950: #071527;
  --color-navy-900: #0b1f3a;
  --color-navy-800: #12345c;
  --color-blue-600: #1967b3;
  --color-cyan-500: #20a9c9;
  --color-green-600: #2f7d68;
  --color-gray-950: #17202c;
  --color-gray-800: #344154;
  --color-gray-600: #647084;
  --color-gray-300: #d7dee8;
  --color-gray-200: #e9eef5;
  --color-gray-100: #f5f7fa;
  --color-white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(7, 21, 39, 0.08);
  --shadow-md: 0 18px 48px rgba(7, 21, 39, 0.14);
  --radius-sm: 6px;
  --radius-md: 8px;
  --container-width: 1240px;
  --header-height: 78px;
  --font-sans: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--color-gray-950);
  background: var(--color-white);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(32, 169, 201, 0.55);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-navy-950);
  font-family: var(--font-heading);
  letter-spacing: 0;
}

h1 {
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.12;
}

h2 {
  font-size: 1.94rem;
  font-weight: 600;
  line-height: 1.24;
}

h3 {
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.32;
}

p {
  color: var(--color-gray-600);
  line-height: 1.68;
}

body.menu-open {
  overflow: hidden;
}
