body {
  scroll-behavior: smooth;
}

header {
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

footer {
  background-color: #2e7d32;
  color: white;
}

.zoomable {
  cursor: zoom-in;
  transition: transform 0.5s ease;
}

.zoomable.zoomed {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  z-index: 1050;
  padding: 2%;
  border-radius: 10%;
  cursor: zoom-out;
}
