.filter-buttons button {
  margin: 5px;
  padding: 10px 20px;
  border: none;
  border-radius: 12px;
  background-color: #4A6A7A;
  color: white;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.filter-buttons button.active {
  background-color: #00A7B5 !important;
}

.gallery img {
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in-out, opacity 0.3s ease;
  margin: 0 auto;
  display: block;
}

.gallery img:hover {
  transform: scale(1.02);
}
