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

header {
  background-color: #4CAF50;
  color: white;
  text-align: center;
  padding: 1em 0;
}

header h1 {
  margin: 0;
  font-size: 4em;
}

header h2 {
  margin: 0;
  color: #0f6312;
  font-size: 2em;
  font-weight: normal;
}

main {
  padding: 2em 1em;
  max-width: 1600px;
  /* Adjust the maximum width as needed */
  margin: 0 auto;
}

.photo-gallery {
  margin-bottom: 2em;
}

.photo-gallery h3 {
  text-align: center;
  font-size: 3em;
  color: #0f6312;
  margin-bottom: 1em;
}

.photo-gallery h2 {
  font-size: 2em;
  color: #333;
  margin-bottom: 1em;
}

.photo {
  display: inline-block;
  margin-right: 1em;
  margin-bottom: 1em;
  text-align: center;
}

.photo-pair {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.photo img {
  max-width: 100%;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  background-color: white;
}

.photo label {
  display: block;
  margin-top: 1em;
  font-size: 2em;
  margin-bottom: 1em;
  color: #333;
}

.photo .center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.body-text h3 {
  text-align: center;
  font-size: 3em;
  color: #0f6312;
  margin-bottom: 0.5em;
}

.body-text p {
  font-size: 2em;
  margin-bottom: 1.5em;
  color: #333;
}

.body-text h4 {
  font-size: 2em;
  font-style: italic;
  margin-top: 0.5em;
  color: #0f6312;
  margin-bottom: 0.5em;
  font-weight: bold;
}

.bulleted-list ul {
  list-style-type: disc;
  color: #333;
  padding-bottom: 1em;
  padding-left: 2em;
}

.bulleted-list li {
  margin-bottom: 0.5em;
  color: #333;
  font-size: 2em;
}

a {
  color: #4CAF50;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.video-container iframe {
  width: 560px;
  height: 315px;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 0.25em 0;
  position: fixed;
  font-size: 1.5em;
  width: 100%;
  bottom: 0;
}