.acm-clients.style-1 .clients-desc {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: var(--gutter-normal);
  font-weight: 900;
}
.acm-clients.style-1 .clients-desc span {
  color: var(--color-primary);
}
.acm-clients.style-1 .clients-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gutter-lg);
  justify-content: center;
  align-items: center;
}
.acm-clients.style-1 .client-img {
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.acm-clients.style-1 .client-img img {
  max-height: 36px;
  opacity: 0.8;
}
.acm-clients.style-1 .client-img img:hover {
  opacity: 1;
}

.acm-clients.style-2 {
  padding: var(--bs-gutter-x);
  background-color: var(--bs-body-bg);
}

.acm-clients.style-2 .section-header {
  margin-bottom: 3rem;
}

.acm-clients.style-2 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--bs-heading-color);
}

.acm-clients.style-2 .section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: var(--bs-secondary-color);
  max-width: 700px;
  margin: 0 auto;
}

.acm-clients.style-2 .clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: center;
}

.acm-clients.style-2 .client-card {
  width: 100%;
  padding: 1.5rem;
  background-color: var(--bs-light);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.acm-clients.style-2 .client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.acm-clients.style-2 .client-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.acm-clients.style-2 .client-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
}

.acm-clients.style-2 .client-card:hover .client-logo img {
  filter: grayscale(0%);
}

.acm-clients.style-2 .client-name {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
  color: var(--bs-primary);
}

@media (max-width: 768px) {
  .acm-clients.style-2 .clients-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .acm-clients.style-2 .section-title {
    font-size: 2rem;
  }
}