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

.services-page-section ul li {
  color: var(--rv-black);
  position: relative;
  background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
  margin-bottom: 15px;
  padding: 14px 14px 14px 50px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-page-section ul li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.services-page-section ul li::before {
  content: "\f270";
  position: absolute;
  font-family: "bootstrap-icons";
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--rv-primary);
  transition: transform 0.3s ease, color 0.3s ease;
}

.services-page-section ul li:hover::before {
  transform: translateY(-50%) scale(1.2);
  color: #4f46e5;
}

.services-page-section .nevdisc-box {
  display: none;
  animation: fadeIn 0.4s ease-in-out forwards;
}

.services-page-section .nevdisc-box.show {
  display: block;
}

.services-page-section .nevdisc-box ul li {
  color: var(--rv-black);
}

.services-page-section .image {
  float: right;
  padding: 30px;
  padding-top: 0;
  animation: fadeIn 0.6s ease-in-out;
}

.services-page-section .image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.services-page-section .costom-nev {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
  padding-bottom: 30px;
  gap: 10px;
}

.services-page-section .costom-nev .tebHendlers {
  padding: 10px;
}

.services-page-section .costom-nev .tebHendlers span {
  padding: 10px 22px;
  border-radius: 30px;
  border: 2px solid var(--rv-primary);
  font-weight: 600;
  cursor: pointer;
  color: var(--rv-primary);
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.services-page-section .costom-nev .tebHendlers.active span,
.services-page-section .costom-nev .tebHendlers span:hover {
  background: var(--rv-primary);
  color: var(--rv-white);
  transform: translateY(-2px);
}

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