img.product {
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  margin-top: 20px;
}
.benefits ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefits li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.benefits li::before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
  flex-shrink: 0;
}

.benefits li:last-child {
  border-bottom: none;
}