.mah-trust-section {
  background-color: #f7fafc;
  padding: 3rem 1rem;
  margin-top: 2rem;
  max-width: 1200px;
    margin: 0 auto;
}

.mah-trust-heading {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #1f2937;
}

.mah-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.mah-trust-card {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease;
}

.mah-trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mah-trust-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.mah-trust-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #111827;
}

.mah-trust-card p {
  font-size: 0.95rem;
  color: #4b5563;
}

.mah-section.mah-trust-grid-bg{
    width: 100%;
    background-color: #ffffff;
    padding: 2rem 0;
}

@media (max-width: 768px) {
  .mah-trust-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
  }

  .mah-trust-card {
    min-width: 250px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}