:root {
    /* --- BRAND COLORS --- */
    --color-primary: #00352b;       /* Previously esante-green */
    --color-accent: #ff3300;        /* Previously esante-orange */
    --color-bg-cream: #fffbe9;      /* Previously esante-cream/yellow */

    /* --- UTILITY COLORS --- */
    --color-accent-dim: #ff330033;  /* 33% Opacity Orange */
    --color-border: #e5e7eb;

    /* --- TEXT COLORS --- */
    --text-main: #000000;
    --text-on-dark: #fffbe9;        /* Cream text for dark backgrounds */
    --text-muted: #00352b80;        /* 50% Opacity Green */
}
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #f9fafb;
    line-height: 1.5;
}