/* General */
body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 20px;
  background: #f9fdf9;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 30px;
}

header h1 {
  color: #2e7d32;
  margin-bottom: 10px;
}

header p {
  color: #555;
  font-size: 1.1rem;
}

/* Container */
.donate-container {
  max-width: 700px;
  margin: auto;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Sections */
.donation-info, .donation-impact, .donation-contact {
  margin-bottom: 25px;
}

.donation-info h2,
.donation-impact h2,
.donation-contact h2 {
  color: #388e3c;
  margin-bottom: 10px;
}

.donation-impact ul {
  margin-left: 20px;
  color: #444;
  line-height: 1.6;
}

/* Form */
.donate-form {
  margin-bottom: 25px;
}

.donate-form h2 {
  color: #2e7d32;
  margin-bottom: 20px;
  text-align: center;
}

.donate-form label {
  display: block;
  margin: 10px 0 5px;
  color: #333;
  font-weight: bold;
}

.donate-form input,
.donate-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #bbb;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 1rem;
}

/* Button */
.donate-form button {
  width: 100%;
  padding: 12px;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

.donate-form button:hover {
  background: #388e3c;
}

/* Contact */
.donation-contact p {
  color: #555;
  font-size: 1rem;
}

.donation-contact .phone {
  font-size: 1.2rem;
  font-weight: bold;
  color: #2e7d32;
}
.email-id a{
    text-decoration: none;
}
.donate-container button{
  background-color: #2e7d32;
  color: white;
}
/*  Tablet  */
@media (min-width: 601px) and (max-width: 900px) {
  .donate-container {
    max-width: 90%;
    padding: 20px;
  }
  header h1 {
    font-size: 2rem;
  }
}

/* Desktop  */
@media (min-width: 901px) {
  .donate-container {
    max-width: 700px;
  }
}
/* Mobile  */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }
  header h1 {
    font-size: 1.6rem;
  }
  header p {
    font-size: 0.95rem;
  }
  .donate-container {
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  }
  .donate-form input,
  .donate-form select {
    font-size: 0.9rem;
    padding: 8px;
  }
  .donate-form button {
    font-size: 1rem;
    padding: 10px;
  }
}
