section {
    margin-bottom: 0;
}

.virtual-kitchen-banner .container {
  overflow: visible;
}

.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;
  /* background: rgba(255,255,255,0.8); */
  backdrop-filter: blur(16px);
  
  padding: 75px 0;

}



.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: var(--primary-color);
  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;

}

.vk-image {
  position: relative;
  z-index: 2;
  display: block;
}

.vk-image-container {
  position: relative;
}

/* soft ground shadow */
.vk-image-container::after {
  content: "";
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 60px;
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.05) 60%,
    transparent 80%
  );
  filter: blur(20px);
  z-index: 1;
  pointer-events: none;
}

.vk-image {
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.15));
}

@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%;
  }
}
