.trusted-section {
  position: relative;
  padding: 30px 0;
  overflow: hidden;
}

/* Logo backdrop — centred, blur effect, breathing opacity 30%→50%→30% */
.trusted-section .logo-backdrop {
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(380px, 55vw, 805px);
  height: clamp(380px, 55vw, 805px);
  background-image: var(--logo-img);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: logo-breathe 5s ease-in-out infinite;
  filter: blur(6px);
  z-index: 1;
  pointer-events: none;
}

/* Section content sits above backdrop */
.trusted-section .container { position: relative; z-index: 2; }

.trusted-section .content{
  max-width: 845px;
  margin-inline: auto;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem 1.5rem;
  border-radius: 10px;
}

/* Body text */
.trusted-body {
  line-height: 1.72;
}

@keyframes logo-breathe {
  0%   { opacity: 0.30; }
  50%  { opacity: 0.55; }
  100% { opacity: 0.30; }
}

@media (min-width: 992px) {
  .trusted-section {
    padding: 50px 0;
  }
}

@media (min-width: 1200px) {
  .trusted-section {
    padding: 230px 0;
  }
}