body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #fff;
  color: #111;
  line-height: 1.6;
}
header, section {
  padding: 2rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
a{
text-decoration: none;
color: darkslategrey;
font-weight: bold;
  }
header {
  background: #f8f8f8;
  text-align: center;
  position: relative;
}
header img {
  /* width: 100%; */
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.full-width-img{
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 2rem;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.team {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.team-member {
  background: #f0f0f0;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}
.team-member img {
  width: 100%;
  max-width: 200px;
  border-radius: 50%;
  margin-bottom: 1rem;
}
@media (min-width: 700px) {
  .team {
    flex-direction: row;
  }
}
.instagram-feed {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.instagram-feed img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
#map {
  width: 100%;
  height: 500px;
  margin-top: 2rem;
  border-radius: 8px;
}
footer {
  background: #f8f8f8;
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}
.donate-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #000;
  color: #fff;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.donate-button:hover {
  background: #333;
}

.tour-overview {
  max-width: 1000px;
  margin: 0 auto;
}

.tour-overview table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.tour-overview th, .tour-overview td {
  border: 1px solid #CCCCCC;
  padding: 0.5rem;
  text-align: left;
  vertical-align: top;

}


.tour-overview a {
  text-decoration: none;
  margin-left: 0.5rem;
}
