* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  background: #f6fffd;
  color: #1f2937;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 26px;
  font-weight: 800;
  color: #0f766e;
}

.navbar a {
  margin: 0 12px;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
}

/* BUTTONS */
.primary-btn {
  background: #0f766e;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  cursor: pointer;
}

.secondary-btn {
  background: white;
  color: #0f766e;
  border: 2px solid #0f766e;
  padding: 12px 18px;
  border-radius: 10px;
  cursor: pointer;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  padding: 80px;
  gap: 40px;
}

.hero-image {
  height: 420px;
  border-radius: 20px;
  background: url("https://images.unsplash.com/photo-1581091870627-3d4c6c6f5d2a")
    center / cover no-repeat;
}

.badge {
  background: #e6fffa;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 48px;
}

.hero h1 span {
  color: #0f766e;
}

.hero-features span {
  margin-right: 15px;
  font-weight: 500;
}

/* SECTIONS */
.section {
  padding: 80px;
  text-align: center;
}

.section h2 {
  font-size: 36px;
}

.section span {
  color: #0f766e;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.about-image {
  height: 320px;
  border-radius: 20px;
  background: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f")
    center / cover no-repeat;
}

.about-item {
  background: white;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 15px;
  text-align: left;
}

/* PROGRAMS */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.program-card {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: left;
}

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.why-card {
  background: #e6fffa;
  padding: 25px;
  border-radius: 14px;
  font-weight: 600;
}

/* DONATE */
.donate {
  background: #0f766e;
  color: white;
}

.donate-box {
  background: white;
  color: black;
  padding: 40px;
  border-radius: 20px;
  max-width: 420px;
  margin: 30px auto;
}

.donate-amounts button {
  margin: 6px;
  padding: 10px 16px;
  border-radius: 10px;
  border: none;
  background: #e6fffa;
  cursor: pointer;
}

.donate-box input {
  width: 100%;
  padding: 12px;
  margin: 15px 0;
  font-size: 16px;
}

/* FOOTER */
footer {
  background: #064e3b;
  color: white;
  padding: 25px;
  text-align: center;
}
