section {
    margin-bottom: 0;
}

.virtual-kitchen-banner {
  background: #f1f1f1;
  padding: 80px 20px;
  overflow: hidden;
  position: relative;
}

.vk-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.vk-text {
  flex: 1 1 400px;
  
  z-index: 3;
}

.vk-text h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 20px;

  

}

.vk-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  max-width: 400px;
  margin: 0 auto;
}

.vk-image-container {
  position: relative;
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.vk-image {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 3 !important;
}

.vk-green-bar {
  position: absolute;
  width: 500px;
  height: 40px;
  background-color: #66ff99;
  z-index: 1;
  transform-origin: center;
}

.bar-1 {
  top: 50%;
  right: 50%;
  transform-origin: right center;
}

.bar-2 {
  bottom: 50%;
  left: 50%;
  transform-origin: left center;

}

@media (max-width: 768px) {
  .vk-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .vk-text, .vk-image-container {
    flex: 1 1 100%;
  }

  .bar-1 {
    top: -30px;
    left: 30%;
  }

  .bar-2 {
    bottom: -30px;
    right: 30%;
  }
}
