body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #000;
}

header {
  background-color: #2e5d34;
  color: white;
  text-align: center;
  padding: 20px 0;
}

nav {
  background-color: #a3c2a4;
  padding: 10px 0;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.content {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  background-color: white;
}

.image-box {
  flex: 1;
  min-width: 300px;
  padding: 10px;
}

.image-box img {
  width: 100%;
  height: auto;
  border: 2px solid #ccc;
}

.text-box {
  flex: 2;
  min-width: 300px;
  padding: 10px;
}

.caption {
  text-align: center;
  padding: 20px;
  background-color: white;
}

footer {
  background-color: #2e5d34;
  color: white;
  text-align: center;
  padding: 10px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 20px auto;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

iframe {
  border: none;
}
