.grid-kmeans {
  padding: 20px;
}

.grid-kmeans h2 {
  margin-top: 40px;
  margin-bottom: 10px;
  font-family: 'Lexend Deca', sans-serif;
  color: #333;
}

.grid-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.grid-row img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

.grid-row img:hover {
  transform: scale(1.03);
}

.item-info {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.item-info h3 {
  margin-top: 0;
  color: #333;
}

.item-info p {
  line-height: 1.6;
}
