.services-page-section {
  font-family: var(--rv-font);
  line-height: 1.8;
  color: var(--rv-gray);
  padding: 40px;
  background: var(--rv-white);
  border-radius: 16px;
  margin: 30px auto;
  transition: all 0.3s ease-in-out;
}

.services-page-section h3 {
  color: var(--rv-primary);
  margin-top: 20px;
  font-size: 32px;
  border-left: 5px solid var(--rv-primary);
  padding-left: 15px;
  margin-bottom: 15px;
  transition: color 0.3s ease;
  position: relative;
}

.services-page-section h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--rv-primary);
  transition: width 0.3s ease;
}

.services-page-section h3:hover {
  color: var(--rv-bg-primary);
}

.services-page-section h3:hover::after {
  width: 100%;
}

.services-page-section p {
  margin-bottom: 20px;
  font-size: 18px;
  text-align: justify;
  color: var(--rv-gray);
}

.services-page-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.services-page-section li {
    background: #eaf3ff;
    padding: 15px 20px;
    margin-bottom: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-size: 17px;
    border-bottom: 3px solid var(--rv-bg-secondary);
    position: relative;
    color: #000;
}
.services-page-section li:hover {
  background: var(--rv-primary-light);
  transform: translateY(-5px);
  border-bottom: 3px solid var(--rv-primary);
}

.services-page-section li::before {
  content: '\1F4CC'; /* Pin icon */
  color: var(--rv-primary);
  font-weight: bold;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.services-page-section li:hover::before {
  transform: rotate(360deg);
}

.services-page-section strong {
  color: var(--rv-black);
  font-weight: 700;
}
