
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;
}