

/* MAIN CARD */
.vm-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* BLOCK */
.vm-block {
  margin-bottom: 50px;
}

/* HEADINGS */
.vm-block h1 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  text-align:center;
}



/* TEXT */
.vm-block p {
  color: #444;
  line-height: 1.7;
}

/* LIST */
.vm-list {
  padding: 0;
  margin-top: 15px;
}

.vm-list li {
  list-style: none;
  padding: 12px 15px;
  margin-bottom: 10px;
  background: #f9fafc;
  border-left: 4px solid var(--accent-red);
  border-radius: 6px;
  transition: 0.3s;
}

/* HOVER */
.vm-list li:hover {
  background: var(--primary-blue);
  color: #fff;
  transform: translateX(5px);
}

/* IMAGE */
.quality-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .vm-card {
    padding: 20px;
  }

  .vm-block h1 {
    font-size: 22px;
  }

  .vm-list li {
    font-size: 14px;
  }
}