.vm-section {
  padding: 10px 0;
  background: var(--bg-light);
}

/* ROW (CARD STYLE + PATTERN BG) */
.vm-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;

  background: var(--white);
  border-radius: 40px;
  padding: 45px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);

  /* PATTERN BACKGROUND */
  background-image: linear-gradient(
    45deg,
    #ffffff 25%,
    #f9f9f9 25%,
    #f9f9f9 50%,
    #ffffff 50%,
    #ffffff 75%,
    #f9f9f9 75%,
    #f9f9f9 100%
  );
  background-size: 40px 40px;

  transition: 0.3s;
}

/* HOVER EFFECT */
.vm-row:hover {
  transform: translateY(-5px);
}

/* REVERSE */
.vm-row.reverse {
  flex-direction: row-reverse;
}

/* IMAGE */
.vm-img img {
  width: 100%;
  max-width: 420px;
  height: 320px;
  object-fit: cover;
  border-radius: 25px;
  border: 8px solid #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: 0.4s;
}

.vm-img img:hover {
  transform: scale(1.05) rotate(1deg);
}

/* CONTENT */
.vm-content {
  flex: 1;
}

/* TITLE */
.vm-content h2 {
    color: var(--primary-red);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px
  position: relative;
}

/* RED LINE */
.vm-content h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--accent-red);
  position: absolute;
  bottom: -6px;
  left: 0;
  border-radius: 5px;
}

/* TEXT */
.vm-content p {
  font-size: 16px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 15px;
  text-align: justify;
}

/* LIST */
.vm-content ul {
  padding-left: 20px;
  margin-top: 10px;
}

.vm-content ul li {
  margin-bottom: 12px;
  font-size: 15.8px;
  line-height: 1.7;
  position: relative;
  padding-left: 38px;
  color: #333;
  transition: 0.3s;
  text-align:left;
}



/* CUSTOM BULLET */
.vm-content ul li::marker {
  color: var(--accent-red);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .vm-row {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 25px;
  }

  .vm-row.reverse {
    flex-direction: column;
  }

  .vm-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .vm-img img {
    height: 260px;
  }
  	.vm-content h2 {font-size:1.7rem !important;}
	.vm-content ul li{padding-left: 0px;text-align:justify;}
	.vm-row {margin-bottom: 30px;}
}
