body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #1f2933;
  background-color: #ffffff;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background: #111827; /* dark charcoal */
  color: #ffffff;
  padding: 15px 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 90px;
  height: auto;
  max-height: 80px;
}


.brand h1 {
  margin: 0;
  font-size: 22px;
}

.tagline {
  font-size: 14px;
  opacity: 0.9;
}

/* Navigation */
nav a {
  color: #ffffff;
  margin-left: 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.donate-btn {
  background: #22c55e;
  padding: 6px 12px;
  border-radius: 4px;
}

/* Hero */
.hero {
  background: #eff6ff;
  padding: 70px 0;
  text-align: center;
}

.hero h2 {
  color: #1e40af;
  font-size: 32px;
}

/* Sections */
.section {
  padding: 50px 0;
}

.section.light {
  background: #f9fafb;
}

.section.highlight {
  background: #dcfce7;
  text-align: center;
}

.section h2 {
  color: #1e40af;
}

.section p {
  max-width: 800px;
}

/* Lists */
ul {
  padding-left: 20px;
}

/* Buttons */
button {
  background: #1e40af;
  color: #ffffff;
  border: none;
  padding: 12px 22px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background: #16338a;
}

/* Footer */
footer {
  background: #111827;
  color: #ffffff;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
}

/* Program section with image */
.program-flex {
  display: flex;
  gap: 30px;
  align-items: center;
}

.program-text {
  flex: 1;
}

.program-image {
  flex: 1;
  text-align: center;
}

.program-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .program-flex {
    flex-direction: column;
  }
}
/* Home page background image */
.hero-bg {
  background: linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)
    ),
    url('background.jpg') center/cover no-repeat;
  min-height: 450px;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.hero-content {
  text-align: center;
}

.hero-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  max-width: 850px;
  margin: auto;
}
/* Hero text on background image */
.hero-bg h2,
.hero-bg p {
  color: #ffffff;
}
