body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f6f7fb;
}

header {
  padding: 16px 32px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header img {
  height: 45px;
}

a {
  text-decoration: underline;
  color: inherit;
}

.breadcrumbs {
  font-size: 14px;
  margin: 10px 32px;
  color: #666;
}

.page-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin: 20px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
  padding: 30px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-4px);
}

.card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 15px;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
}
