.tools-landing {
  padding: 40px;
  text-align: center;
}

.tool-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.tool-card {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 10px;
  width: 260px;
  text-decoration: none;
  color: white;
  transition: 0.2s;
}

.tool-card:hover {
  background: #333;
  transform: translateY(-4px);
}
