.dr1057herodocuments {
  position: relative;
  height: 420px;
  overflow: hidden;
}

/* Image */
.dr1057hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills nicely like hero */
  display: block;
}

/* Overlay */
.dr1057hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Content */
.dr1057hero-content {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  color: #fff;
  max-width: 600px;
}

.dr1057hero-content h1 {
  font-size: 40px;
  margin-bottom: 12px;
  font-weight: 700;
}

.dr1057hero-content p {
  font-size: 18px;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .dr1057herodocuments {
    height: 300px;
  }

  .dr1057hero-content {
    left: 20px;
    right: 20px;
    text-align: center;
  }

  .dr1057hero-content h1 {
    font-size: 28px;
  }

  .dr1057hero-content p {
    font-size: 15px;
  }
}