/* Service section */
.services-page-section {
  background: var(--rv-white);
  padding: 60px 0;
}

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

.services-page-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: var(--rv-secondary);
  margin-top: 10px;
}

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

.services-page-section ul li,
.services-page-section .info-box .content ul li {
  background: linear-gradient(135deg, rgba(0, 136, 207, 0.9), rgba(0, 153, 78, 0.8));
  border: 1px solid rgba(14, 1, 61, 0.3);
  border-radius: 12px;
  padding: 15px 20px 15px 40px;
  font-size: 16px;
  color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.services-page-section ul li:hover,
.services-page-section .info-box .content ul li:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, rgba(0, 153, 78, 0.9), rgba(0, 136, 207, 0.85));
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

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

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

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

.services-page-section .button .btn {
  background: var(--rv-primary);
  color: var(--rv-white);
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.services-page-section .button .btn i {
  margin-left: 10px;
  font-size: 20px;
}

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

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

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

.services-page-section .cta {
  font-size: 16px;
  font-weight: 600;
  color: var(--rv-primary-two);
  margin-top: 20px;
  font-style: italic;
}
