.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

.client-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px 30px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1000px;
}

.client-list li {
  background: #f8f8f8;
  padding: 10px 15px;
  border-left: 4px solid #007bff;
  border-radius: 4px;
  transition: all 0.2s ease;
  color: #333;
  font-size: 15px;
}

.client-list li:hover {
  background: #007bff;
  color: white;
  transform: translateY(-2px);
}
