:root {
  --primary: #0d6efd;
  --text: #1f2937;
  --muted: #6b7280;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
}
a { text-decoration: none; }
.hero-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.price-note {
  color: #0a7d38;
  font-weight: 700;
}
.service-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}
.service-card h3, .blog-mini h3 {
  font-size: 1.1rem;
  font-weight: 700;
}
.about-card img {
  object-fit: cover;
  width: 100%;
  max-height: 420px;
}
.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.feature-list {
  padding-left: 1.2rem;
}
.feature-list li {
  margin-bottom: .65rem;
}
.blog-mini article {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.promo-strip {
  background: #fff3cd;
  padding: .55rem 1rem;
  font-weight: 700;
  animation: softblink 1.8s infinite;
  border-bottom: 1px solid #f0d88c;
}
.promo-strip a { color: #7a4b00; }
@keyframes softblink {
  0%, 100% { opacity: 1; }
  50% { opacity: .55; }
}
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  background: #198754;
  color: white;
  padding: .8rem 1rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  font-weight: 700;
}
.content-page { max-width: 860px; }
.footer-section a { color: var(--primary); }
