* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
  display: block;
}

/* Hero */
.hero {
  /* background: url('https://www.wfp.org/sites/default/files/styles/featured/public/2021-06/WFP-0000127432.jpg') center/cover no-repeat; */
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  /* background: rgba(0, 0, 0, 0.6); */
  text-align: center;
  padding: 20px;
  color: #fff;
  width: 100%;
}

.hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #2f4f4f;
}




 .donation-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin: 50px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tag {
  background: #ff9f43;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 10px;
}

 .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
  line-height: 1.4;
  color: #222;
}

.subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.info {
  font-size: 13px;
  color: #444;
  margin: 8px 0 14px 0;
}

/* .donate-btn {
  background: #ff4d4d;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
  margin-top: auto;
} */

.donate-btn:hover {
  background: #b6ccc0;
  color: #555;
}

/* Responsive Fix for small screens */
@media (max-width: 600px) {
  .card img {
    height: 180px;
  }
}