.services-page-section {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  overflow: hidden;
  z-index: 1;
}



.services-page-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-page-section p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
  font-weight: 500;
}

.services-page-section ul,
.services-page-section .info-box .content ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 25px;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.services-page-section ul li,
.services-page-section .info-box .content ul li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px 25px 20px 45px;
  font-size: 16px;
  color: #000000;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
}

.services-page-section ul li:hover,
.services-page-section .info-box .content ul li:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

.services-page-section ul li::before,
.services-page-section .info-box .content ul li::before {
  content: "✔";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--rv-secondary);
}

.services-page-section p i {
  font-style: italic;
  color: var(--rv-primary-two);
}

/* Button styling */
.services-page-section .button {
  text-align: center;
  margin-top: 50px;
}

.services-page-section .button .btn {
  background: var(--rv-primary);
  color: #fff;
  padding: 14px 36px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(42, 19, 87, 0.4);
}

.services-page-section .button .btn i {
  margin-left: 12px;
  font-size: 20px;
  transition: margin-left 0.3s ease;
}

.services-page-section .button .btn:hover {
  background: var(--rv-primary-two);
  transform: translateY(-4px);
}

.services-page-section .button .btn:hover i {
  margin-left: 16px;
}

.services-page-section .info-box {
  margin-top: 40px;
}

.services-page-section .cta {
  font-size: 17px;
  font-weight: 600;
  color: var(--rv-primary-two);
  margin-top: 25px;
  font-style: italic;
  text-align: center;
}