/*Donate stuff Page styles*/
body .donate-stuff-body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

header.donate-stuff-header {
  text-align: center;
  /* background: linear-gradient(135deg, #ff0066, #ff7b7b, #ff0066); */
  /* background-color: #ed43b3; */
  background-color: #ff3399;
  color: white;
  padding: 50px 20px;
}

.donate-stuff-header h1 {
  margin: 0;
  font-size: 36px;
}

.donate-stuff-header p {
  font-size: 18px;
  margin-top: 10px;
}

.donate-stuff-steps {
  padding: 50px 20px;
  background-color: white;
  text-align: center;
}

.donate-stuff-steps h2 {
  margin-bottom: 20px;
}

.donate-stuff-steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.donate-stuff-step {
  background-color: #f1f1f1;
  border-radius: 8px;
  padding: 20px;
  max-width: 300px;
  text-align: center;
}

.donate-stuff-step img {
  width: 100%; /* Make the image fill the width of its container */
  height: 200px; /* Set a fixed height for uniformity */
  object-fit: cover; /* Ensures the image covers the area proportionally */
  border-radius: 8px; /* Matches the container's border-radius for a uniform look */
  margin-bottom: 15px; /* Space below the image */
}

.donate-stuff-step h3 {
  margin-bottom: 10px;
}

.items-needed {
  padding: 50px 20px;
  /* background: linear-gradient(135deg, #ff0066, #ff7b7b, #ff0066); */
  background-color: #ff3399;
}

.items-needed ul {
  list-style-type: disc;
  padding-left: 40px;
  color: white;
  font-size: 20px;
}

.items-needed h2 {
  text-align: center;
  margin-bottom: 20px;
  color: white;
}

.donate-stuff-dropoff-details {
  padding: 50px 20px;
  background-color: white;
  text-align: center;
}

.donate-stuff-dropoff-details .donate-stuff-locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.donate-stuff-location {
  background-color: #f1f1f1;
  border-radius: 8px;
  padding: 20px;
  max-width: 300px;
  text-align: center;
}

.donate-stuff-contact-us {
  text-align: center;
  padding: 50px 20px;
  /* background: linear-gradient(135deg, #ff0066, #ff7b7b, #ff0066); */
  background-color: #ff3399;
  color: white;
}

.donate-stuff-contact-us h2 {
  margin-bottom: 10px;
}

footer.donate-stuff-footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: white;
}

.donate-stuff-footer a {
  color: #ff7b7b;
  text-decoration: none;
}
