/* Hide the top logo/banner that covers the page */
header nav > div:first-child {
  display: none !important;
}

/* Enhance hero section */
.hero-section {
  padding-top: 120px !important;
  padding-bottom: 80px !important;
}

/* Make hero logo larger and more prominent */
.hero-logo-container {
  width: 200px !important;
  height: 200px !important;
  margin: 0 auto 40px !important;
}

.hero-logo-container img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* Style EZRA text */
.hero-title {
  font-size: 72px !important;
  font-weight: 900 !important;
  letter-spacing: 0.1em !important;
  margin-bottom: 32px !important;
  text-align: center !important;
}

/* Responsive design */
@media (max-width: 768px) {
  .hero-section {
    padding-top: 80px !important;
  }
  
  .hero-logo-container {
    width: 150px !important;
    height: 150px !important;
    margin-bottom: 30px !important;
  }
  
  .hero-title {
    font-size: 48px !important;
  }
}
