.image-section {
  position: relative;
  width: 80%;  
  height: 70vh; 
  display: flex;
  justify-content: center; 
  align-items: center; 
  background-color: white;
  margin-top: 60px; 
  margin: auto;
  padding-top: 100px;

}

.image-container {
  width: 100%;
  height: 100%;
}

.image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;  
  object-position: center; 
  
}

@media (max-width: 768px) {
 .image-section {
  position: relative;
  width: 100%;  
  height: 70vh; 
  display: flex;
  justify-content: center; 
  align-items: flex-start; 
  background-color: white;
  margin-top: -100px; 
  
  
}}
