/* Trusted By Strip */
.trust-strip {
  padding: 40px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
}

.trust-strip h6 {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 25px;
  font-weight: 700;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.trust-logo {
  opacity: 0.5;
  transition: all 0.3s ease;
  max-width: 150px;
  height: auto;
  filter: grayscale(100%);
  cursor: pointer;
}

.trust-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.trust-logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 60px;
  background: #e0e0e0;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .trust-strip {
    padding: 30px 0;
  }
  
  .trust-logos {
    gap: 20px;
  }
  
  .trust-logo-placeholder {
    width: 110px;
    height: 50px;
    font-size: 12px;
  }
}
