/* General reset */
body, h1, h2, p, ul, li {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base styles */
body {
  font-family: "Segoe UI", Roboto, sans-serif;
  background-color: #f4ede1; /* light tan */
  color: #2f2b25;
  line-height: 1.7;
  margin: 0;
}

/* Header */
header {
  background: linear-gradient(to bottom, #355e3b, #264729);
  text-align: center;
  padding: 3rem 1rem;
  color: #fff;
}

header h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  font-family: "Georgia", serif;
}

.subtitle {
  font-size: 1.1rem;
  color: #d3cbb8;
}

/* Main content */
main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.intro {
  text-align: center;
  margin-bottom: 2rem;
  background-color: #fffaf3;
  border: 1px solid #e3d8c5;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.details {
  background-color: #fffaf3;
  border: 1px solid #e3d8c5;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.details h2 {
  color: #2f3e2f;
  text-align: center;
  font-family: "Georgia", serif;
  margin-bottom: 1rem;
}

.details ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #3a3a3a;
}

.details li {
  margin-bottom: 0.5rem;
}

.donation-note {
  margin-top: 1rem;
  font-style: italic;
  color: #3d3a2b;
  background-color: #f6efe2;
  padding: 1rem;
  border-left: 4px solid #6a4b2e;
  border-radius: 8px;
}

/* Button */
.button-container {
  text-align: center;
  margin-top: 2rem;
}

.button {
  display: inline-block;
  background-color: #6a4b2e; /* wood brown */
  color: #fff;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.button:hover {
  background-color: #8b5e3c;
  transform: translateY(-2px);
}



/* Footer */
footer {
  background-color: #355e3b;
  color: #f1e8d5;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
  border-top: 3px solid #264729;
}

.footer-note {
  margin-top: 0.5rem;
  font-style: italic;
  color: #d9cdb5;
}
