/* Hero Logo Styles */
.hero-logo {
  text-align: center;
  margin-bottom: -3rem;
}

.hero-logo-image {
  width: 475px;
  height: 475px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.hero-logo-image:hover {
  transform: scale(1.05);
}

/* Adjust hero title margin to account for logo */
.hero-title {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* Responsive adjustments for the hero logo */
@media (max-width: 768px) {
  .hero-logo {
    margin-bottom: 1.5rem;
  }
  .hero-logo-image {
    width: 80vw;
    height: auto;
  }
}
@media (max-width: 480px) {
  .hero-logo {
    margin-bottom: 1rem;
  }
  .hero-logo-image {
    width: 80vw;
    height: auto;
  }
}

/*# sourceMappingURL=hero-logo.css.map */
