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

:root {
    --red: #cc1a25;
    --red-dark: #a8141d;
    --navy: #0c1a2e;
    --navy-2: #142036;
    --navy-3: #1c2d47;
    --gold: #c8952a;
    --bg: #f5f4f0;
    --bg-card: #ffffff;
    --text: #111111;
    --text-2: #3a3a3a;
    --text-3: #6b6b6b;
    --border: #e0ddd6;
    --fh: 'Merriweather', Georgia, serif;
    --fb: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --r: 4px;
    --sh: 0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.07);
    --sh2: 0 8px 32px rgba(0,0,0,.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fb);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

img {
    display: block;
}

svg {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 18px;
}