/* Footer Styles */
.site-footer {
  background-color: #dff0d8; /* light green */
  color: #333333; /* light black */
  padding: 30px 20px;
  font-size: 14px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left,
.footer-right {
  flex: 1 1 300px;
  margin-bottom: 20px;
}

.footer-left h4,
.footer-right h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #2f4f2f;
}

.footer-left ul {
  list-style: none;
  padding: 0;
}

.footer-left ul li {
  margin-bottom: 5px;
}

.footer-left ul li a {
  color: #333333;
  text-decoration: none;
}

.footer-left ul li a:hover {
  text-decoration: underline;
}

.footer-right p {
  margin: 5px 0;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #c8e5bc;
  padding-top: 10px;
  margin-top: 20px;
}

.footer-bottom a {
  color: #333333;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-bottom i {
  font-size: 24px;
  vertical-align: middle;
  margin-right: 6px;
}

.video-section {
  padding: 40px 20px;
  background-color: #f0fff0;
  text-align: center;
}

.video-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-box {
  width: 48%;
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-box iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .video-box {
    width: 100%;
  }
}
