
* { box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0; padding: 0;
  background-color: #f5f7fb; color: #1f2933;
}
.main-container { max-width: 1100px; margin: 0 auto; padding: 24px 16px 40px; }
.title { font-size: 2rem; margin: 0 0 4px; color: #111827; }
.subtitle { font-size: 1.1rem; color: #4b5563; }
.price-badge {
  display: inline-flex; align-items: center; gap: 8px; margin: 16px 0;
  padding: 8px 14px; border-radius: 999px; background: #fee2e2; color: #b91c1c; font-weight: 600;
}
.contact-section { margin: 16px 0 24px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.contact-email a { color: #2563eb; text-decoration: none; }
.contact-button {
  padding: 10px 18px; border-radius: 999px; background: #2563eb; color: #fff;
  text-decoration: none; font-weight: 600; transition: 0.1s ease;
}
.contact-button:hover { background: #1d4ed8; }
.description { font-size: 0.98rem; line-height: 1.6; margin-bottom: 18px; }
.section-title { font-size: 1.1rem; font-weight: 700; margin: 20px 0 8px; color: #111827; }
.features-list { margin: 0 0 18px 0; padding-left: 20px; font-size: 0.96rem; line-height: 1.6; }
.gallery { margin-top: 24px; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px;
}
.gallery-grid img {
  width: 100%; height: 100%; max-height: 260px; object-fit: cover;
  border-radius: 12px; background-color: #e5e7eb;
}
.footer-note { margin-top: 20px; font-size: 0.9rem; color: #6b7280; }
