
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff9f9;
  color: #333;
}
.hero {
  background: linear-gradient(135deg, #ffe3ec, #f8c6db);
  padding: 4rem 2rem;
  text-align: center;
  color: #4b2e4e;
}
.hero .btn-cta {
  display:inline-block;
  background:#a8245d;
  color:#fff;
  padding:0.8rem 1.5rem;
  border-radius:4px;
  text-decoration:none;
  font-size:1.1rem;
  margin-top:1rem;
}
.product-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:1.5rem;
  padding:2rem;
}
.product-card {
  background:#fff;
  border:1px solid #f4d9e6;
  border-radius:8px;
  box-shadow:0 2px 6px rgba(0,0,0,0.05);
  text-align:center;
  padding:1rem;
}
.product-card h3 {
  font-size:1.1rem;
  margin-bottom:0.5rem;
}
.product-card p {
  font-size:0.95rem;
}
.product-btn {
  background:#d40076;
  color:#fff;
  padding:0.5rem 1rem;
  border-radius:4px;
  text-decoration:none;
  display:inline-block;
  margin-top:0.5rem;
}
footer {
  text-align:center;
  background:#fef1f6;
  padding:2rem;
  font-size:0.9em;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.product-btn {
  margin-top: auto;
}
