/* Your custom styles */
:root {
    /* Updated Palette based on #78A200 */
    --color-primary: #78A200;
    /* Base Green */
    --color-secondary: #222222;
    --color-accent: #0099cc;

    /* Wave Colors - Monochromatic variations of #78A200 */
    --wave-color-1: #78A200;
    /* Base */
    --wave-color-2: #8CB600;
    /* Slightly Lighter */
    --wave-color-3: #A0CA2E;
    /* Mid Light */
    --wave-color-4: #C4E060;
    /* Lightest */

    --font-main: 'Poppins', sans-serif;
    --font-headings: 'Montserrat', sans-serif;
}

.content-area.primary {
    margin: 0 auto !important;
}

.custom-header .ast-container {
    max-width: 1705px;
}

/* Header general */
.custom-header {
    position: relative;
    width: 100%;
    z-index: 11;
}

.header-wave {
    position: absolute;
    width: 100%;
    line-height: 0;
    /* Remove vertical gap */
}

/* Wave SVG & Animations */
.header-wave svg {
    display: block;
    width: 100%;
    height: 150px;
}

.wave-path {
    transform-origin: bottom center;
    will-change: d;
    /* Optimize for path changes */
}