body {
  margin: 0;
  padding: 0;
  background-color: #000;
  font-family: Arial, sans-serif;
}

.hero-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.background-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: auto;
  transform: translate(-50%, -50%);
}

.text-box {
  position: absolute;
  top: 50%;
  left: calc(5% + 100px); /* original 5% plus 100px */
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 30px;
  max-width: 400px;
  border-radius: 20px;
  font-size: 1.2rem;
  line-height: 1.5;
}

.orange-text {
  color: orange;
}

.text-box h1 {
  color: #ff4200;
}

