@font-face {
    font-family: "Roboto Flex";
    src: url("./RobotoFlex-VariableFont_GRAD,XOPQ,XTRA,YOPQ,YTAS,YTDE,YTFI,YTLC,YTUC,opsz,slnt,wdth,wght.ttf") format("truetype");
    font-weight: 100 1000;
    font-style: normal;
    font-display: swap;
}

:root {
    --navy: #000c8c;
    --red: #d42027;
    --gray: #f2f2f2;
    --text-muted: #666666;
    --text: #444444;
    --white: #ffffff;
    --shadow: 0 10px 28px rgba(0, 12, 140, 0.12);
    --radius: 14px;
    --content: 1100px;
    --font: "Roboto Flex", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html {
    font-size: 16px;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.5;
}

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

h1,
h2,
h3,
p,
ul,
dl,
dt,
dd {
    margin: 0;
}

a {
    color: var(--navy);
}

h1 {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy);
    line-height: 1.3;
}

h2 {
    font-size: 1.35rem;
    color: var(--navy);
    font-weight: 700;
}