﻿/* Trust Section Layout */
.bh-trust-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.bh-trust-title {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}

.bh-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.bh-trust-card {
  background: #181818;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 16px;
  text-align: left;
}

.bh-trust-card h3 {
  color: #06d6a0; /* Matches your cookie button green */
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 8px;
  line-height: 1.3;
}

.bh-trust-card p {
  color: #cccccc;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 992px) {
  .bh-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .bh-trust-grid {
    grid-template-columns: 1fr;
  }
}