/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4fdf7;
  color: #333;
  line-height: 1.6;
}

/* Logo Bar */
.logo-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
  background-color: white;
}

.logo {
  max-width: 300px;
  height: auto;
}

/* Navigation */
header {
  background-color: #4AA886; /* updated to logo green */
  padding: 10px 0;
  text-align: center;
}

nav a {
  margin: 0 20px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #bfffd9;
}

/* Hero Section */
.hero {
  background-image: url("assets/money-background.jpg");
  background-size: cover;
  background-position: center top; /* can change to center or adjust below */
  color: white;
  padding: 140px 20px 160px 20px; /* increased top & bottom padding */
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;      /* slightly smaller than before */
  margin-bottom: 20px;
  color: #4AA886;         /* logo green */
  text-shadow: none;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #4AA886;         /* restored to white */
  text-shadow: none; /* keep shadow for readability */
}

button.primary {
  background-color: #4AA886; /* updated to logo green */
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

button.primary:hover {
  background-color: #3A866C; /* slightly darker green for hover */
}

/* Map Section */
.map-section {
  padding: 60px 20px;
  text-align: center;
}

.map-image {
  width: 50%;
  display: block;
  margin: 0 auto;
}

/* Success Stories */
.success-stories {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.success-stories ul {
  list-style-type: none;
  margin-top: 20px;
}

.success-stories li {
  margin-bottom: 10px;
  font-style: italic;
}

/* Donations */
.donations {
  padding: 60px 20px;
  text-align: center;
  background-color: #e7f9f0;
}

.donation-buttons a {
  display: inline-block;
  margin: 10px 15px;
  text-decoration: none;
  background-color: #4AA886; /* updated to logo green */
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
}

/* FAQ */
.faq {
  padding: 60px 20px;
  text-align: left;
  max-width: 800px;
  margin: auto;
}

/* Footer */
footer {
  background-color: #4AA886; /* updated to logo green */
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-size: 0.9rem;
}
