.services-page-section ul li,
.services-page-section ol li {
    margin-bottom: 16px;
    line-height: 1.6;
    position: relative;
    padding-left: 32px; /* increased padding for icon */
    font-weight: 500;
    color: #556677;
    border-left: 2px solid rgba(85, 102, 119, 0.15); /* faded vertical border */
    transition: color 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

/* Use Font Awesome check-circle icon as bullet */
.services-page-section ul li::before,
.services-page-section ol li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900; /* solid style */
  content: "\f058"; /* check-circle icon */
  position: absolute;
  left: 4px; /* some left padding inside border */
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--rv-primary, #6bb543);
  transition: color 0.3s ease, transform 0.3s ease;
  z-index: 1;
  text-shadow: 0 0 6px var(--rv-primary, #6bb543);
}

/* subtle fade line after */
.services-page-section ul li::after,
.services-page-section ol li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 32px; /* aligns with padding-left */
    width: calc(100% - 32px);
    height: 1px;
    background: rgba(85, 102, 119, 0.1);
    pointer-events: none;
    transition: background 0.3s ease;
}

/* Hover effect changes */
.services-page-section ul li:hover,
.services-page-section ol li:hover {
    color: var(--rv-primary);
    border-color: var(--rv-primary);
}

.services-page-section ul li:hover::before,
.services-page-section ol li:hover::before {
    color: var(--rv-secondary);
    text-shadow: 0 0 8px var(--rv-secondary);
}

.services-page-section ul li:hover::after,
.services-page-section ol li:hover::after {
    background: var(--rv-secondary);
}

/* Button styling */
.services-page-section .button {
    margin-top: 30px;
    text-align: center;
    animation: fadeInUp 1.2s ease-in-out;
}

.services-page-section .button .btn {
    background: linear-gradient(45deg, var(--rv-primary), var(--rv-secondary));
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: bold;
    color: var(--rv-white);
    border-radius: 50px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.services-page-section .button .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
