/* TRUST BAR STYLES — paste into your stylesheet */
.trust-bar {
  background: #1D4ED8; /* change to match your site's dark colour */
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  color: #A8D4FF;
}

.trust-item svg {
  color: #7b8cde;
  flex-shrink: 0;
}

.trust-label {
  display: block;
  font-size: 11px;
  color: #A8D4FF;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.trust-value {
  display: block;
  font-size: 14px;
  color: #e8e8f0;
  font-weight: 600;
}

.trust-divider {
  color: #4a4a6a;
  font-size: 20px;
}

/* FCA badge gets a subtle highlight */
.trust-fca {
  background: #1D4ED8;
  border: 1px solid #2a5a9f;
  border-radius: 6px;
  padding: 6px 16px;
}

.trust-fca svg { color: #7aabde; }
.trust-fca .trust-label { color: #7aabde; }
.trust-fca .trust-value { color: #a8d4ff; }

/* Mobile: stack into 2x2 grid */
@media (max-width: 600px) {
  .trust-bar { gap: 8px; }
  .trust-divider { display: none; }
  .trust-item { flex: 1 1 45%; justify-content: center; text-align: center; flex-direction: column; gap: 4px; }
  .trust-item svg { margin: 0 auto; }
}