
* { box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f7fb;
  color: #111827;
}

.main-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

.header { margin-bottom: 12px; }

.title {
  font-size: 2rem;
  margin: 0 0 4px;
}

.subtitle {
  font-size: 1.05rem;
  color: #4b5563;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  font-weight: 600;
}

.contact-section {
  margin: 16px 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.contact-email { font-size: 0.96rem; }

.contact-email a {
  color: #2563eb;
  text-decoration: none;
}

.contact-email a:hover { text-decoration: underline; }

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: #2563eb;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.contact-button:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.55);
}

.description {
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.section-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 20px 0 8px;
}

.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(230px, 1fr));
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 14px;
  background-color: #e5e7eb;
}

.footer-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #6b7280;
}

@media (max-width: 640px) {
  .title { font-size: 1.6rem; }
  .main-container { padding: 18px 12px 28px; }
}
