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

header {
  background-color: #007BFF;
  color: #FFFFFF;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  display: flex;
  align-items: center;
}
header .logo img {
  height: 50px;
  margin-right: 1rem;
}
header .logo h1 {
  font-size: 1.5rem;
}
header nav ul {
  list-style: none;
  display: flex;
}
header nav ul li {
  margin-left: 1rem;
}
header nav ul li a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
}
header nav ul li a:hover {
  text-decoration: underline;
}

.hero {
  background: url("../images/svdp.jpg") no-repeat center center/cover;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
}
.hero .hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 
    -1px -1px 0 #007BFF,  
     1px -1px 0 #007BFF,
    -1px  1px 0 #007BFF,
     1px  1px 0 #007BFF; /* Blue stroke effect */
}
.hero .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 
    -1px -1px 0 #007BFF,  
     1px -1px 0 #007BFF,
    -1px  1px 0 #007BFF,
     1px  1px 0 #007BFF; /* Blue stroke effect */
}
.hero .hero-content .btn {
  background-color: #FF69B4;
  color: #FFFFFF;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.hero .hero-content .btn:hover {
  background-color: #ff369b;
}

.about, .donation, .contact {
  padding: 2rem;
  text-align: center;
}
.about h2, .donation h2, .contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about p, .donation p, .contact p {
  font-size: 1.1rem;
  line-height: 1.6;
}
.about .highlight, .donation .highlight, .contact .highlight {
  background-color: #cce5ff;
  padding: 1rem;
  border-left: 5px solid #007BFF;
  font-weight: bold;
}

.donation form, .contact form {
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
}
.donation form label, .contact form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.donation form input, .donation form textarea, .donation form button, .contact form input, .contact form textarea, .contact form button {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.donation form button, .contact form button {
  background-color: #007BFF;
  color: #FFFFFF;
  font-weight: bold;
  cursor: pointer;
}
.donation form button:hover, .contact form button:hover {
  background-color: #0062cc;
}

footer {
  background-color: #007BFF;
  color: #FFFFFF;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* ... (Existing CSS) ... */

.projects {
  padding: 2rem;
  text-align: center;
}

.projects h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Contact Information Section */
.contact-info {
  padding: 2rem;
  text-align: center;
  background-color: #f9f9f9;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-details {
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-details p {
  margin: 0.5rem 0;
}

/* Future Projects Section */
.future-projects {
  padding: 2rem;
  text-align: center;
  background-color: #fff;
}

.future-projects h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.project-list ul {
  list-style-type: none;
  padding: 0;
}

.project-list ul li {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0.5rem 0;
  padding: 0.5rem;
  background-color: #f0f8ff;
  border-left: 5px solid #007BFF;
}