
.toolConversion-containers{
  width: 1400px;
  margin: 0 auto;
}

.toolConversion-section {
  padding: 20px 0px;
}

.toolConversion-container {
  max-width: 1400px;
  margin: 0 auto;
}

.toolConversion-container h1 {
  color: #000;
  font-size: 24px;
  padding: 0;
}

.tool-description{
  font-size: 16px;
  color: #848383;
  margin-bottom: 10px;
}

.tool-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  padding-top: 30px;
  border-top: 1px solid #ccc;
}

.tool-item-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  padding:  15px;
  font-size: 18px;
  text-decoration: none;
  color: #848383;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  height: 40px;
}

.tool-item-link:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
  border-color: #cc0000;
  color: #cc0000;
}

.tool-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #cc0000;
}

.tool-item-link:hover .tool-icon {
  color: #cc0000;
}

.tool-name {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
}