body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  margin: 0;
  padding: 0;
}

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

.logo {
  width: 100px;
  height: auto;
}

.tagline {
  font-style: italic;
  margin-top: 10px;
}

section {
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

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

.gallery-grid img {
  width: 100%;
  height: auto;
  border: 2px solid #ccc;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  border-color: #555;
}

.contact a {
  color: #0066cc;
  text-decoration: none;
}

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

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}