.tools-section {
  padding: 3rem 0;
  background: #fafbfc;
}

.tools-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary, #23315a);
  margin-bottom: 1.2rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.tool-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 3px 18px 0 rgba(35,49,90,0.08);
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 1px solid #f0f0f0;
  position: relative;
  gap: 2rem;
}

.tool-card:hover {
  box-shadow: 0 8px 24px 0 rgba(35,49,90,0.18);
  transform: translateY(-3px) scale(1.03);
}

.tool-icon {
  font-size: 2.4rem;
  color: var(--color-accent, #47c7f3);
  
}

.tool-card h3 {
  margin: 0 0 0 0;
  font-size: 1.18rem;
  font-weight: 600;
}

.tool-card p {
  margin: 0;
  font-size: 1rem;
  color: #23315a90;
}
