/* ── TRUST SECTION ── */

.trust {
  background: #f0f6fa;
  padding: 72px 60px;
}

.trust .trust-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  max-width: 1920px;
  margin: 0 auto;
}

.trust h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin-bottom: 28px;
  line-height: 1.15;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(0.85rem, 1.5vw, 0.94rem);
  color: var(--text);
  line-height: 1.5;
  text-align: left;
}

.check {
  width: 20px;
  height: 20px;
  background: #00a3d3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check svg {
  width: 11px;
  height: 11px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
}
.why-image-col {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 12px;
}
.why-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(13, 45, 69, 0.15);
  display: block;
}
@media (max-width: 457px) {
  .trust .how-we-work a {
    width: 100%;
    text-align: center;
  }
}
