/* General body and layout styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

/* Header Styles */
header {
  background-color: #003366; /* Dark blue background */
  color: white;
  text-align: center;
  padding: 20px;
}

header h1 {
  margin: 0;
  font-size: 46px; /* Increased font size */
  font-weight: bold; /* Boldens the title to make it stand out more */
}

header p {
  margin: 10px 0;
}

/* Donate Button in the header */
.donate-btn {
  background-color: #FFCC00; /* Yellow button */
  color: #003366; /* Dark blue text */
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
}

.donate-btn:hover {
  background-color: #e6b800;
}

/* Hero Image Section */
#hero-image {
  text-align: center; /* Centers the content inside this section */
  margin: 20px auto;
  width: 100%; /* Ensures the section takes up the full width */
  display: flex;
  justify-content: center; /* Centers the image horizontally */
}

#hero-image img {
  max-width: 100%; /* Ensures the image doesn't exceed the section's width */
  height: auto; /* Maintains the image's aspect ratio */
  display: block; /* Removes any unwanted margin */
}

/* Section Styles */
section {
  padding: 40px 20px;
  margin: 20px auto;
  max-width: 800px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section h2 {
  color: #003366;
}

/* Contact Form Styles */
form {
  display: flex;
  flex-direction: column; /* Stacks the form elements vertically */
  align-items: flex-start; /* Left-aligns the form elements */
}

form input,
form textarea {
  width: 300px; /* Set fixed width for form fields */
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  background-color: #003366;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px;
  width: 300px; /* Make button the same width as form fields */
  margin-top: 10px; /* Adds space between button and fields */
}

form button:hover {
  background-color: #001f33;
}

/* Donate Section */
#donate {
  text-align: left; /* Align text to the left */
}

#donate button {
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  display: block;
  margin: 20px auto;
}

#donate button:hover {
  background-color: #e6b800;
}

/* Footer Styles */
footer {
  text-align: center;
  background-color: #003366;
  color: white;
  padding: 20px;
  font-size: 12px; /* Smaller font size for the footer */
}

footer p {
  margin: 5px 0;
}
