.services-page-section .info-box {
  display: flex;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 40px;
}

/* Image merged into content */
.services-page-section .info-box .image {
  flex: 1 1 300px;
  min-width: 280px;
  max-width: 400px;
  overflow: hidden;
  position: relative;
}

.services-page-section .info-box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 0;
}

.services-page-section .info-box:hover .image img {
  transform: scale(1.05);
}

/* Textual content */
.services-page-section .info-box > div:not(.image) {
  flex: 2 1 500px;
  padding: 30px;
  color: #222;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fdfdfd;
}

/* Paragraph styling */
.services-page-section .info-box p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #333;
}

/* Bold and Strong */
.services-page-section .info-box b,
.services-page-section .info-box strong {
  color: #000;
  font-weight: 600;
}

.services-page-section .info-box ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #444;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* Faded underline */
  padding-bottom: 8px;
}

.services-page-section .info-box ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #007bff;
  font-size: 14px;
  top: 2px;
}


.services-page-section .info-box ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #007bff;
  font-size: 14px;
}

/* Call-to-action button */
.services-page-section .button {
  text-align: left;
  margin-top: 20px;
}

.services-page-section .button a.getstarted {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.services-page-section .button a.getstarted:hover {
  background: linear-gradient(135deg, #0056b3, #004080);
  transform: translateY(-2px);
}

.services-page-section .button a.getstarted i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.services-page-section .button a.getstarted:hover i {
  transform: translateX(5px);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .services-page-section .info-box {
      flex-direction: column;
  }

  .services-page-section .info-box .image,
  .services-page-section .info-box > div:not(.image) {
      flex: 1 1 100%;
      max-width: 100%;
  }

  .services-page-section .info-box > div:not(.image) {
      padding: 20px;
  }

  .services-page-section .button {
      text-align: center;
  }
}
