R
Rbody {
  font-family: Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
}

header {
  background: #2f7d32;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

section {
  padding: 30px 20px;
}

.btn {
  background: #4caf50;
  color: white;
  padding: 12px 18px;
  text-decoration: none;
  margin: 5px;
  display: inline-block;
}

.secondary {
  background: #1e88e5;
}

.two-col {
  display: flex;
  gap: 20px;
}

.two-col div {
  flex: 1;
}

.cta {
  background: #f4f4f4;
  text-align: center;
}

.google-btn {
  border: 2px solid #4285F4;
  padding: 12px 20px;
  display: inline-block;
  text-decoration: none;
  color: #000;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item img {
  width: 100%;
  border-radius: 4px;
}

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

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 28px;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
}.main-nav {
  text-align: center;
  margin: 15px 0;
}

.main-nav a {
  display: inline-block;
  margin: 0 15px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding: 8px 12px;
  background: #4caf50;
  border-radius: 4px;
}

.main-nav a:hover {
  background: #1e88e5;
  color: white;
}
.logo {
  max-width: 220px;
  height: auto;
  margin-bottom: 15px;
}.gallery {
  padding: 20px;
  text-align: center;
}

.gallery h2 {
  margin-bottom: 15px;
}

.gallery-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 25px;
}

.gallery-item img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}.gallery-section {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.ba-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.ba-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.label {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 4px 8px;
  font-size: 13px;
  border-radius: 4px;
}

.label.after {
  background: #2e7d32;
}

/* Mobile friendly */
@media (max-width: 768px) {
  .ba-grid {
    grid-template-columns: 1fr;
  }

  .ba-item img {
    height: 220px;
  }
}