.services-page-section .info-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background: var(--rv-white);
  border-radius: 16px;
  overflow: hidden;
  align-items: stretch;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-page-section .info-box:hover {
}

.services-page-section .image {
  flex: 1 1 400px;
  padding: 0;
  overflow: hidden;
}

.services-page-section .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.services-page-section .info-box > div:not(.image) {
  flex: 2 1 600px;
  padding: 30px;
  color: var(--rv-black);
}

.services-page-section .info-box p,
.services-page-section .info-box ul li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--rv-gray);
  margin-bottom: 12px;
}
.services-page-section ul {
  list-style: none;
  padding-left: 0;
  margin: 30px 0;
  display: grid;
  gap: 16px;
}

.services-page-section ul li {
  position: relative;
  padding: 16px 20px 16px 56px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid var(--rv-primary);
  color: var(--rv-black);
  font-size: 15.5px;
  line-height: 1.6;
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.services-page-section ul li:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

.services-page-section ul li::after {
  content: "\f26f"; /* Changed icon for variation - clipboard check */
  font-family: "bootstrap-icons";
  position: absolute;
  left: 20px;
  top: 18px;
  font-size: 20px;
  color: var(--rv-primary);
  transition: color 0.3s ease;
}

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

.services-page-section ul li:nth-child(1) {
  animation-delay: 0.1s;
}
.services-page-section ul li:nth-child(2) {
  animation-delay: 0.2s;
}
.services-page-section ul li:nth-child(3) {
  animation-delay: 0.3s;
}
.services-page-section ul li:nth-child(4) {
  animation-delay: 0.4s;
}
.services-page-section ul li:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.services-page-section .button {
  text-align: center;
  margin-top: 40px;
}

.services-page-section .button a.btn {
  background: var(--rv-primary);
  color: var(--rv-white);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.services-page-section .button a.btn:hover {
  background: var(--rv-secondary);
  transform: translateY(-2px);
}
