body {
  font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
  margin: 0;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background: #2c3e50;
  color: white;
}

nav a {
  margin: 10px;
  color: white;
  text-decoration: none;
}

.hero {
  background: linear-gradient(to right, #16a085, #27ae60);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.cards {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.card {
  flex: 1;
  background: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
}

.gallery img {
  width: 30%;
  margin: 10px;
}

.contact form {
  display: flex;
  flex-direction: column;
  width: 300px;
}

.donate-btn {
  background: orange;
  padding: 8px;
  border-radius: 5px;
}

.hi { display: none; }