/* yax-custom.css */

/* Override any additional styles to match YAX brand */
:root {
    --yax-orange: #F05F21;
    --yax-light-bg: linear-gradient(0deg, #EFEEEC 0%, #EFEEEC 100%), #FFF;
    --yax-dark: #28272C;
}

/* Custom link hover effects with YAX orange */
a:hover {
    color: var(--yax-orange) !important;
}

/* Customize active states */
.bg-primary-600 {
    background-color: var(--yax-orange) !important;
}

/* Add gradient background to header if desired */
.header-custom {
    background: var(--yax-light-bg);
}
