body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0a0a0a;
  color: #eee;
}

.header {
  text-align: center;
  padding: 40px 20px;
}

.logo {
  font-size: 2.5rem;
  color: #a67c00;
  margin: 0;
}

.slogan {
  color: #ccc;
  margin-top: 8px;
}

.hero {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #6a0dad, #007bff);
  color: white;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 40px;
}
/*
.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
}*/

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(166, 124, 0, 0.3);
}

.icon {
  width: 80px;
  margin-bottom: 15px;
}

.btn {
  display: block;
  margin: 10px auto;
  padding: 10px 20px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.btn:hover {
  background: #0056b3;
}

.btn-secondary {
  display: block;
  margin: 10px auto;
  padding: 10px 20px;
  background: #a67c00;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.btn-secondary:hover {
  background: #6a0dad;
}

.footer {
  text-align: center;
  padding: 20px;
  color: #777;
  font-size: 0.9rem;
}
.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
  overflow: hidden;
}

.banner img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.icon-wrapper img {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 0 10px rgba(166, 124, 0, 0.4);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(166, 124, 0, 0.3);
}

.banner img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.icon-wrapper img {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 0 10px rgba(166, 124, 0, 0.4);
}
