<style>
.vitaal-bedrijf-section {
  position: relative;
  background: #fff;
  font-family: 'Helvetica Neue', sans-serif;
  overflow: hidden;
  padding: 40px 42px;
}
.vitaal-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  max-width: 1200px;
}
.vitaal-left {
  flex: 1 1 500px;
}
.vitaal-left h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a1a1a;
}
.vitaal-left .intro {
  font-weight: bold;
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.vitaal-left .description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 24px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
}
.btn-primary {
  color: #fff;
  background: #30363f;
  border: 2px solid transparent;
  background-clip: padding-box;
  z-index: 1;
  border-radius: 999px;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 999px;
  padding: 2px;
  background: linear-gradient(135deg, #3B9CDB 0%, #3B9CDB 50%, #6C10B9 70%, #E5007D 80%, #FF612F 90%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.btn-outline {
  background: #fff;
  color: #000;
  border-radius: 999px;
  position: relative;
  z-index: 1;
  padding: 10px 24px;
  border: none;
}
.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 999px;
  padding: 2px;
  background: linear-gradient(135deg, #3B9CDB 0%, #3B9CDB 50%, #6C10B9 70%, #E5007D 80%, #FF612F 90%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.vitaal-right {
  flex: 1 1 600px;
  position: relative;
  overflow: hidden;
}
.masonry-wrapper {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.vitaal-gradient-top,
.vitaal-gradient-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 2;
  pointer-events: none;
}
.vitaal-gradient-top {
  top: 0;
  background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0));
}
.vitaal-gradient-bottom {
  bottom: 0;
  background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0));
}
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
  margin-top: -40px;
  margin-bottom: -40px;
}
.masonry-img {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}
.masonry-img.offset {
  transform: translateY(40px);
}
@media (max-width: 768px) {
  .vitaal-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .masonry-grid {
    grid-template-columns: 1fr;
    margin-top: -20px;
    margin-bottom: -20px;
  }
  .masonry-img.offset {
    transform: none;
  }
}
</style>