body {
  margin: 0;
  font-family: Arial;
  background: #f5f7fb;
}

header {
  background: #0d6efd;
  color: red;
  padding: 15px;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.container {
  padding: 20px;
}

h1 { margin-bottom: 10px; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
}

.card {
  background: red;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 5px;
  margin-bottom: 10px;
}

.icon-grid img {
  width: 100%;
  height: 100%;
}

footer {
  background: #0d6efd;
  color: white;
  text-align: center;
  padding: 20px;
}