.insurance-details__services-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.insurance-details__services-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Menu Design */
.insurance-details__services-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: #f4f7ff;
  border-radius: 14px;
  text-decoration: none;
  color: #1e1e1e;
  font-size: 15px;
  font-weight: 600;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}

/* Animated Background */
.insurance-details__services-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #4f46e5, #0d6efd);
  transition: all 0.4s ease;
  z-index: -1;
}

/* Hover Effect */
.insurance-details__services-list li a:hover::before {
  left: 0;
}

.insurance-details__services-list li a:hover {
  color: #fff;
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

/* Arrow */
.insurance-details__services-list li a span {
  transition: all 0.3s ease;
  font-size: 13px;
}

/* Arrow Animation */
.insurance-details__services-list li a:hover span {
  transform: rotate(-45deg) scale(1.2);
}

/* Active Menu */
.insurance-details__services-list li.active a {
  background: linear-gradient(90deg, #4f46e5, #0d6efd);
  color: #fff;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}
.insurance-details {
  position: relative;
  display: block;
  padding: 60px 30px 40px;
  z-index: 1;
}
.about-one__text-1 {
  font-size: 20px;
}
.about-one__points {
  position: relative;
  display: block;
  margin-top: 0px;
  margin-bottom: 10px;
}
.about-one__points li .text p {
  font-size: inherit;
  color: var(--insur-black);
  font-weight: 500;
  letter-spacing: var(--insur-letter-spacing);
}
.accordion-button {
  font-weight: 600;
}

.accordion-item {
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}
.icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: contain;
  /* important for clarity */
  image-rendering: crisp-edges;
}
