.tailored-solutions,
.product-highlights {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.tailored-solutions h2,
.product-highlights h2 {
  font-size: 28px;
  margin-bottom: 25px;
  text-align: center;
}

.solutions-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.solution-card,
.product-card {
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  text-align: center;
  transition: 0.3s;
}

.solution-card:hover,
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.solution-card img,
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.solution-card h3,
.product-card h3 {
  margin: 15px 0;
  font-size: 18px;
  font-weight: 600;
}