:root {
    --color-primary: #003580;
    --color-primary-strong: #002a66;
    --color-primary-soft: #eaf2ff;
    --color-accent: #c6973f;

    --color-bg: #f4f7fb;
    --color-surface: #ffffff;
    --color-surface-alt: #f7faff;
    --color-border: #d9e2ee;
    --color-border-strong: #b8c7db;

    --color-text: #17212f;
    --color-text-soft: #5d6b7c;
    --color-text-muted: #7c8796;

    --shadow-sm: 0 8px 20px rgba(10, 31, 68, 0.08);
    --shadow-md: 0 16px 34px rgba(10, 31, 68, 0.14);

    --radius-md: 0.875rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.5rem;

    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;

    --container-max: 1200px;

    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.35rem;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #eef3fa 0%, var(--color-bg) 100%);
    color: var(--color-text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

h1,
h2,
h3,
h4,
p {
    margin: 0;
}