body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background: #f9f9f9;
}

.site-header {
  text-align: center;
  padding: 20px;
  background: #222;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  width: 100px;
  display: block;
  margin: 0 auto;
}
.site-header h1 {
  margin: 10px 0 5px;
  font-size: 2em;
}
.address {
  margin: 0;
  font-size: 0.9em;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  background: #25d366;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
.whatsapp-btn img {
  width: 20px;
  margin-right: 8px;
}

.gallery {
  padding: 40px 20px;
  text-align: center;
}
.gallery h2 {
  font-size: 2em;
  margin-bottom: 20px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}

.testimonials {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
}
.testimonials h2 {
  font-size: 2em;
  margin-bottom: 20px;
}
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.card {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 8px;
  max-width: 300px;
  text-align: left;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.card img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}
.card p {
  font-style: italic;
  margin: 0 0 10px;
}
.card span {
  font-weight: bold;
}

.site-footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: #fff;
}