* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
}
header {
  background: #2e7dff;
  color: white;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 1.2rem;
}
.logo img {
  height: 40px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  color: white;
  text-decoration: none;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  background: #f5f8ff;
}
.hero-text {
  max-width: 50%;
}
.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.hero-text p {
  margin-bottom: 1.5rem;
}
.hero-text .btn {
  padding: 0.7rem 1.2rem;
  background: #2e7dff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}
.hero-img {
  max-width: 45%;
  border-radius: 10px;
}
.about, .programs, .donate, .contact {
  padding: 2rem;
  text-align: center;
}
.about h21 {
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #2e7dff;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.card {
  padding: 1rem;
  background: #f5f8ff;
  border-radius: 10px;
}
.donate button {
  padding: 0.7rem 1.5rem;
  background: #2e7dff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: auto;
}
.contact input, .contact textarea {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}
.contact button {
  padding: 0.7rem;
  background: #2e7dff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.what-we-do {
  padding: 2rem;
  text-align: center;
  background: #fffdf5;
}
.what-we-do h2 {
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #2e7dff;
}
.work-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 800px;
  margin: 0 auto;
  gap: 1.5rem;
}
.work-card {
  background: #f5f8ff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.2s ease-in-out;
}
.work-card:hover {
  transform: translateY(-5px);
}
.work-card h3 {
  margin-bottom: 0.8rem;
  color: #333;
}

.who-we-are {
  padding: 2rem 3rem;
  background: #fffdf5;
  text-align: center;
}

.who-we-are h2 {
  margin-bottom: 2rem;
  font-weight: 600;
  color: #2e7dff;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.who-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.who-text p {
  margin-bottom: 1rem;
  color: #555;
}

.who-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Responsive #f9fbff */
@media (max-width: 768px) {
  .who-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .who-text {
    text-align: center;
  }
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
