/* Color Variables (Kept for compatibility) */
:root {
    --almostwhite: #f9f7f7;
    --haze: #dbe2ef;
    --myblue: #3f72af;
    --bizblue: #112d4e;
}

/* Base Styles */
body {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f3f7fc; /* --surface-page */
    color: #14323d;      /* --text-body */
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection {
    background: #9ad3f3;
    color: #142642;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Legacy classes kept for any remaining references */
.logo-text {
    font-weight: bold;
}

.logo-accent {
    color: var(--myblue);
}
