.products-section {
  padding: 56px 0 72px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.product-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.10);
  box-shadow: 0 18px 40px rgba(16, 32, 51, 0.10);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  border: 2px solid #d9e6f2;
}

.product-image {
  height: 260px;
  background: linear-gradient(180deg, #f5f5f5, #ececec);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-content {
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-content h2 {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.product-content p {
  font-size: 15px;
  line-height: 1.5;
  color: #4b5563;
  margin-bottom: 14px;
}

.product-content .btn {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.page-heading {
  padding: 46px 0 24px;
  text-align: center;
}

.page-heading h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  margin-bottom: 10px;
}

.page-heading p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.55;
  color: #4b5563;
}