.hero-section {
  background-image: url('https://pub-6a68ab42031a43bf9e32106d2908da84.r2.dev/images/em_hero.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Fallback gradient if image fails to load */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #E55A2B 0%, #2E5A87 100%);
  z-index: -1;
}