.tool-section {
  padding: 2rem;
}

.tool-section .tool-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.tool-section .tool-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1e1e2f;
  margin-bottom: 20px;
}

.tool-section .tool-description {
  color: #555;
  margin-bottom: 2rem;
}

.tool-section .tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.tool-section .tool-card {
  background: #f9f9f9;
  padding: 1.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-align: left;
  text-decoration: none;
  color: #111;
  transition: border-color 0.2s ease;
}

.tool-section .tool-card:hover {
  border-color: #007acc;
}

.tool-section .tool-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.tool-section .tool-card p {
  font-size: 0.95rem;
  color: #444;
}

@media screen and (max-width: 600px) {
  .tool-section .tool-card {
    padding: 1rem;
  }

  .tool-section .tool-title {
    font-size: 1.5rem;
  }
}
