/* 2-column services block (no background color set) */
.services-2col {
  padding: 40px 0 60px;
}

/* Use your Bootstrap container for centered width */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.service {
  text-align: center;
}

/* Top label (small rounded box with shadow) */
.service__tag {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  font-size: 14px;
  color: #7a7a7a;
  background: #F3EAE2;
  box-shadow: 0 2px 4px rgba(0,0,0,0.12);
  margin-bottom: 18px;
}

/* Circular image */
.service__image {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 22px;
}

.service__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Bullet list centered under circle */
.service__list {
  display: inline-block;   /* allows centered block with left-aligned bullets */
  text-align: left;
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.8;
  color: #000;
}

.service__list li {
  margin: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .service__image {
    width: 210px;
    height: 210px;
  }
}
