/* ===== Reset & Variables ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #00001F;
    --orange: #F47B25;
    --orange-hover: #d96a1e;
    --orange-light: #F9A65E;
    --light-gray: #F2F2F3;
    --white: #FFFFFF;
    --text-gray: #666;
    --border-gray: #E0E0E0;
    --green: #27AE60;
    --purple: #252549;
    --blue-accent: #2D308D;
    --red: #E53E3E;
}

body {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--navy);
    background: var(--light-gray);
}

h1, h2, h3, .section-title {
    font-family: 'Lexend Deca', sans-serif;
    letter-spacing: -1px;
}

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-hover); }

/* ===== Typography ===== */
.sub { color: var(--text-gray); font-size: 1.05rem; margin-top: 0.25rem; }
