.services-pages {
  border-radius: 10px;
  background: var(--rv-white);
  transition: all 0.3s ease-in-out;
  margin: auto;
  font-family: Arial, sans-serif;
  color: var(--rv-black);
}



.services-pages p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--rv-black);
}

.services-pages strong {
  font-size: 18px;
  color: var(--rv-primary);
  text-transform: uppercase;
  display: block;
  margin-top: 0px;
  position: relative;
}

.services-pages strong::before {
  color: var(--rv-secondary);
  margin-right: 8px;
}

.services-pages ul {
  list-style: none;
  padding: 0;
  margin: 15px 10px;
}
.services-pages li {
  background: var(--rv-white);
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 5px;
  border-left: 4px solid var(--rv-primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.services-pages li:hover {
  background: var(--rv-primary-light);
  border-left-color: var(--rv-secondary);
  transform: scale(1.02);
}

.services-pages li::before {
  content: "✔";
  position: absolute;
  left: 10px;
  font-size: 18px;
  color: var(--rv-secondary-light);
}

.services-pages li strong {
  color: var(--rv-primary);
  margin-left: 25px;
}

.services-pages-footer {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  color: var(--rv-secondary-light);
  border-top: 2px solid var(--rv-secondary-light);
  padding-top: 15px;
  transition: all 0.3s ease-in-out;
}

.services-pages-footer:hover {
  color: var(--rv-primary);
  border-top-color: var(--rv-primary);
}