:root {
  --color-navy-950: #1e2a36;
  --color-navy-900: #003e80;
  --color-navy-800: #0054a6;
  --color-blue-600: #0054a6;
  --color-cyan-500: #1ba39c;
  --color-green-600: #1ba39c;
  --color-gray-950: #1e2a36;
  --color-gray-800: #3a4856;
  --color-gray-600: #4f5d6b;
  --color-gray-300: #d6e0ea;
  --color-gray-200: #e4eaf1;
  --color-gray-100: #f7f9fc;
  --color-white: #ffffff;
  --section-white: #ffffff;
  --section-light: #f7f9fc;
  --section-soft: #f3f6fa;
  --shadow-sm: 0 10px 28px rgba(30, 42, 54, 0.06);
  --shadow-md: 0 18px 44px rgba(30, 42, 54, 0.11);
  --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(--section-light);
  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(27, 163, 156, 0.45);
  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;
}
