.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.product-card {
  background: #fff;
  border: 1px solid #d0dce8;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
  text-decoration: none;
}
.product-card__img {
  height: 160px;
  overflow: hidden;
  background: #e8f0f8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__body {
  padding: 16px 20px 20px;
  flex: 1;
}
.product-card__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a5276;
  margin: 0 0 8px;
}
.product-card__desc {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.6;
}
.product-card__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #f0f4f8;
  color: #1a5276;
  font-size: 1.2rem;
  font-weight: 600;
  border-top: 1px solid #dde8f0;
}

/* hero */
.page-hero {
  background: linear-gradient(135deg, #1a2e44 0%, #1a5276 100%);
  padding: 48px 0;
  color: #fff;
  text-align: center;
}
.page-hero h1 {
  font-size: 2.4rem;
  margin: 0 0 8px;
}
.page-hero p {
  font-size: 1.5rem;
  opacity: 0.85;
  margin: 0;
}
.contact-section {
  background: #f0f4f8;
  padding: 40px 20px;
  text-align: center;
  margin-top: 20px;
}
.contact-section h2 {
  font-size: 2rem;
  color: #1a5276;
  margin-bottom: 12px;
}
.contact-section p {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 20px;
}
.btn-contact {
  display: inline-block;
  padding: 14px 40px;
  background: #1a5276;
  color: #fff !important;
  border-radius: 4px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background 0.2s;
  text-decoration: none !important;
}
