:root {
    /* Colors */
    --primary-color: #013475;
    --secondary-color: #264c99;
    --text-color: #282828;
    --white: #ffffff;
    --bg-color: #ffffff;
    --badge-bg: #2854AB;

    /* Spacing */
    --container-max-width: 1440px;
    --nav-height: 80px;

    /* Typography */
    --font-family: 'Inter', sans-serif;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}
