body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  color: #333;
}
header {
  text-align: center;
  background: #0b2c4a;
  color: white;
  padding: 20px;
}
header .logo {
  max-width: 200px;
}
h1, h2 {
  color: #0b2c4a;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.gallery img {
  width: 200px;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 5px;
}
.gallery figcaption {
  text-align: center;
  margin-top: 5px;
}
.map {
  display: block;
  margin: 20px auto;
  max-width: 90%;
  border: 2px solid #0b2c4a;
}
footer {
  text-align: center;
  padding: 20px;
  background: #0b2c4a;
  color: white;
}
.call-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #28a745;
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.call-button:hover {
  background: #218838;
}
