* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
}
.hero {
  background: url('header-bg.jpg') center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
}
.overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
}
.hero h1 span,
.small-decisions h2 span,
.mission .highlight {
  color: #1c9c70;
}
.cta-buttons {
  margin-top: 20px;
}
button {
  padding: 12px 20px;
  border: none;
  margin-right: 10px;
  cursor: pointer;
}
button.donate {
  background-color: #1c9c70;
  color: white;
}
button.learn {
  background-color: white;
  color: #333;
  border: 1px solid #333;
}
.stats {
  display: flex;
  justify-content: space-around;
  background-color: #1c9c70;
  color: white;
  padding: 40px 0;
}
.mission {
  padding: 60px 30px;
  text-align: center;
}
.funds {
  margin: 30px 0;
  font-size: 1.4em;
  color: #1c9c70;
}
.mission-img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 30px auto 0;
}
.small-decisions {
  display: flex;
  align-items: center;
  background-color: #f7e0c2;
  padding: 60px 30px;
}
.small-decisions img {
  width: 50%;
}
.small-decisions div {
  padding-left: 40px;
}
.proteges {
  padding: 60px 30px;
  background: #fff;
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.child-card img {
  width: 100%;
  height: auto;
}
.child-card h3 {
  margin-top: 10px;
}
.final-cta {
  background: #f3d8b2;
  text-align: center;
  padding: 40px 20px;
}
