body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", "Arial", sans-serif;
  background-color: #f5f7fa;
}

#infolist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.2);
}

.card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 24px;
  color: #2c3e50;
}

.info {
  margin-bottom: 8px;
  color: #34495e;
  font-size: 15px;
}

.section-title {
  margin-top: 16px;
  font-weight: bold;
  font-size: 16px;
  color: #3498db;
}

.card a {
  color: #2980b9;
  text-decoration: none;
}

.card a:hover {
  text-decoration: underline;
}
