body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #1b4d2a;
  color: #333;
}

header {
  background: #1b4d2a;
  color: #fff;
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 3rem;
}

header h1 {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 3rem;
}

nav {
  background: #1b4d2a;
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 1rem;
}

nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
}

main {
  padding: 2rem;
  max-width: 1024px;
  margin: auto;
}

section {
  margin-bottom: 3rem;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
}

table {
  width: 100%;
}

table td {
  width: 50%;
  vertical-align: top;
}

.hero {
  text-align: center;
}

.small-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.banner {
  background-color: black;
  padding: 20px 0;
  text-align: center;
  color: white;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.banner h1 {
  margin: 0;
  color: white;
  font-size: 28px;
}


form {
  display: flex;
  flex-direction: column;
}

input,
textarea {
  margin-bottom: 10px;
  padding: 10px;
  font-size: 1rem;
}

button {
  padding: 10px;
  font-size: 1rem;
  background: #1b4d2a;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background: #444;
}

.donation-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

donation-buttons button {
  background: #1b4d2a;
  border-radius: 5px;
  padding: 10px 20px;
  flex: 1;
  min-width: 80px;
}

donation-buttons button:hover {
  background: #005fcc;
}

.thank-you {
  margin-top: 20px;
  padding: 15px;
  background: #e6fffa;
  border-left: 5px solid #28a745;
  font-size: 1rem;
}

.hidden {
  display: none;
}

donate-button {
  display: inline-block;
  background: #28a745;
  color: white;
  padding: 15px 25px;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 5px;
}

donate-button:hover {
  background: #218838;
}

.about-section {
  padding: 2rem;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-top: 0;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #222;
  color: #fff;
}

.Left {
  text-align: left;
}


/* Mobile responsive styles */
@media (max-width: 768px) {
  main {
    padding: 1rem;
  }

  section {
    padding: 1.5rem;
  }

  header h1 {
    font-size: 1.5rem;
  }

  header {
    font-size: 1.5rem;
  }

  nav a {
    margin: 0 5px;
    font-size: 1.0rem;
  }

  .small-image {
    width: 100%;
    max-width: 250px;
    margin: 0 auto 1rem;
  }

  table {
    width: 100%;
  }

  table tr {
    display: flex;
    flex-direction: column;
  }

  table td {
    width: 100%;
    text-align: center;
  }

  .about-container {
    flex-direction: column;
    gap: 15px;
  }

  .about-text {
    min-width: auto;
  }

  .donation-buttons {
    flex-direction: column;
  }

  .donation-buttons button {
    flex: 1;
    width: 100%;
  }

  form input,
  form textarea {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 0.25rem 0.5rem;
    font-size: 1.5rem;
  }

  header h1 {
    font-size: 1.5rem;
  }

  nav a {
    display: block;
    margin: 8px 0;
  }

  .small-image {
    max-width: 200px;
  }

  section {
    padding: 1rem;
  }

  main {
    padding: 0.5rem;
  }
}

  .vote-message {
    font-size: 1.1rem;
  }
}

@media (min-width: 768px) {
  table td {
    width: 50%;
  }

.small-image {
    max-width: 300px;
  }
}  

.vote-message {
  font-size: 2.5rem;
  color: #1b4d2a;
  font-weight: bold;
  margin: 1rem 0;
}

@media (max-width: 768px) {
  .vote-message {
    font-size: 1.2rem;
  }
}
