body {
  align-items: center;
  background-color: #009660;
  color: #ffffff;
  font-family: Arial, sans-serif;
  justify-content: center;
  line-height: 1.5;
  margin: 24px;
  min-height: 100vh;
}
h1 {
  margin-bottom: 40px;
  font-size: 2em;
  margin: 0 0 12px;
  color: #ecfff6;
}
h2 {
  color: #ecfff6;
}
ul {
  padding-left: 0;
  list-style: none;
}
li {
  margin: 8px 0;
}
a {
  color: #eafff4;
  text-decoration: none;
}
a:hover {
  color: #ffffff;
  text-decoration: underline;
}
small, small a {
  color: #dbffef;
}
small a:hover {
  color: #ffffff;
}
.container {
  text-align: center;
}
.cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  background: #005f3d;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  text-decoration: none;
  color: #ffffff;
  font-size: 1.3em;
  font-weight: bold;
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.card .icon {
  font-size: 2.5em;
  margin-bottom: 12px;
}
.badge-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.badge-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  background: transparent;
}
