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

header {
  background-color: #2e7d32;
  color: white;
  padding: 20px;
  text-align: center;
}

header nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

header nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

header nav a:hover,
a:hover {
  color: #f57c00;
  text-decoration: underline;
  transition: color 0.3s ease;
}

section {
  background: white;
  margin: 20px auto;
  padding: 20px;
  width: 95%;
  max-width: 1000px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

h2 {
  color: #2e7d32;
}

form input, form textarea {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button {
  background: #f57c00;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

img {
  margin: 10px;
  border-radius: 8px;
  max-width: 100%;
  height: auto;
}

a {
  color: #2e7d32;
  text-decoration: none;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 20px auto;
  max-width: 100%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

#video {
  max-width: 100%;
  padding: 0;
  background: none;
  box-shadow: none;
}

@media (min-width: 900px) {
  .video-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }
}
