/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 16 2025 | 15:34:48 */
    :root{
        --bl-purple:#7c3aed;
        --muted:#6b7280;
        --quote:#e5e7eb;
    }    /*Trust Chips*/
  

/* Center the trust badges row */
    .trust-chips{
        display:flex;
        flex-wrap:wrap;
        gap:12px 14px;        /* row x column gap */
        justify-content:center;   /* <-- centers the chips */
        align-items:center;
        width:100%;
        max-width: 920px;     /* optional: keeps a nice line length */
        margin:14px auto 0;   /* center the whole row in its container */
    }

    /* (unchanged) individual chip style */
    .chip{
        font-size:1rem;
        padding:8px 14px;
        border-radius:999px;
        background:#f5f3ff;
        color:var(--bl-purple);
        border:1px solid #e9e5ff;
        display:inline-flex;
        align-items:center;
        justify-content:center;
        white-space:nowrap;
    }

