.tools {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.tools-header h2 {
  font-size: 28px;
  color: var(--theme-color);
  margin-bottom: 10px;
}

.tools-header p {
  font-size: 16px;
  color: #444;
  margin-bottom: 40px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.tool-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

.tool-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: var(--theme-color);
}

.tool-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.tool-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.tool-card .btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}

.tool-card .btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  background: var(--theme-color);
  color: #fff;
}

.tool-card .btn-primary:hover {
  background: #0a0e9f;
}
