.apple-category-section .apple-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

/* CARD */
.apple-category-section .apple-service-card {
  background: #fff;
  border-radius: 28px;
  padding: 28px 20px;

  text-align: center;
  text-decoration: none;

  transition: all 0.35s ease;

  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

/* HOVER */
.apple-category-section .apple-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* IMAGE */
.apple-category-section .apple-service-card img {
  width: 100%;
  max-width: 180px;
  height: 160px;
  object-fit: contain;

  display: block;
  margin: 0 auto 24px auto;

  transition: transform 0.3s ease;
}

.apple-category-section .apple-service-card:hover img {
  transform: scale(1.05);
}

/* TITLE */
.apple-category-section .apple-service-card h3 {
  color: #111;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}