.trust-first {
  background: #ffffff;
  padding: clamp(40px, 8vw, 80px) 0;
}

.trust-first h2 {
  text-align: center;
  color: var(--bg-dark);
  margin-bottom: 3em;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3em;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-card {
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trust-header {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
}

.trust-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-yellow);
  border-radius: 8px;
  flex-shrink: 0;
}

.trust-card h3 {
  color: var(--bg-dark);
  font-weight: 600;
  margin-bottom: 0;
  text-align: left;
}

.trust-card p {
  color: #374151;
  text-align: left;
  line-height: 1.7;
  margin-bottom: 0.75em;
  font-size: clamp(16px, 2vw, 18px);
}

.trust-card p:last-child {
  margin-bottom: 0;
}

/* MOBILE - Extra Small (up to 480px) */
@media (max-width: 480px) {

  .trust-grid {
      grid-template-columns: 1fr;
      gap: 2em;
  }

  .trust-header {
      gap: 0.875em;
  }

  .trust-icon {
      width: 50px;
      height: 50px;
  }

}

/* TABLET - Small to Medium (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  
  .trust-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5em;
  }

  .trust-header {
      gap: 0.875em;
  }

  .trust-icon {
      width: 50px;
      height: 50px;
  }

}

/* TABLET to DESKTOP - Medium (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {

  .trust-grid {
      grid-template-columns: 1fr;
      gap: 2em;
  }

  .trust-header {
      gap: 0.875em;
  }

  .trust-icon {
      width: 50px;
      height: 50px;
  }

}