.services-section-copy {
  padding: 60px 0;
  background: #f8f9fa;
}

.services-grid-copy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.service-card-copy {
  background: #fff;
  border: 1px solid #eceef3;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
  border-radius: 10px;
}

.service-card-copy:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.service-link-copy {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.service-image-copy {
  position: relative;
  overflow: hidden;
  transition: border-radius 0.35s ease;
}

.service-image-copy img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform 0.35s ease, border-radius 0.35s ease;
}

.service-image-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  box-shadow: inset 0 0 0 26px rgba(31, 183, 173, 0.28);
  opacity: 0;
  transition: opacity 0.35s ease, border-radius 0.35s ease;
  pointer-events: none;
}

.service-card-copy:hover .service-image-copy {
  border-radius: 50% / 48%;
}

.service-card-copy:hover .service-image-copy img {
  border-radius: 50% / 48%;
  transform: scale(1.03);
}

.service-card-copy:hover .service-image-copy::after {
  border-radius: 50% / 48%;
  opacity: 1;
}

.service-content-copy {
  padding: 20px;
}

.service-content-copy h3 {
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.line-copy {
  display: block;
  width: 46px;
  height: 2px;
  background: #20296E;
  margin-bottom: 14px;
}

.service-content-copy p {
  margin: 0;
  color: #242323;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .services-grid-copy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .services-section-copy {
    padding: 40px 0;
  }

  .services-grid-copy {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-image-copy img {
    height: 190px;
  }

  .service-content-copy h3 {
    font-size: 22px;
  }
}
