:root {
    --navy: #0A1A2F;
    --navy-mid: #0D2240;
    --navy-light: #112B52;
    --accent: #F5B041;
    --accent-dark: #D4922A;
    --white: #FFFFFF;
    --gray-light: #F7F9FC;
    --gray: #8A9BB0;
    --text: #1A2F4A;
    --text-light: #4A6080;
    --card-shadow: 0 4px 24px rgba(10, 26, 47, 0.10);
    --card-shadow-hover: 0 12px 40px rgba(10, 26, 47, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo-text {
    font-family: 'Montserrat', sans-serif;
}
