body {
  font-family: 'Trebuchet MS', sans-serif;
  background-color: #1c1c1c;
  color: #fff;
  margin: 0;
  padding: 40px;
}

h1 {
  text-align: center;
  color: #ffd700;
  margin-bottom: 40px;
}

.card-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background: #2e2e2e;
  border: 2px dashed #444;
  padding: 20px;
  width: 280px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  border-color: #ffd700;
}

.card h2 {
  color: #ffd700;
  margin-bottom: 10px;
}

.card p {
  line-height: 1.6;
  font-size: 15px;
}
