body {
  font-family: 'Calibri', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #0077b6;
  color: white;
}

header .logo img {
  height: 150px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
}

.hero {
  position: relative;
  text-align: center;
}

.hero img {
  width: 100%;
  height: auto;
}

.hero h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.5rem;
}

.about, .activities, .contact {
  padding: 20px;
  text-align: center;
}

.gallery {
  padding: 20px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

footer {
  background-color: #023e8a;
  color: white;
  padding: 20px;
  text-align: center;
}

footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .logo img {
  height: 40px;
}

footer .contact-info {
  text-align: left;
}

footer .visitor-counter {
  text-align: right;
}