.dg-hero-content {
  margin-top:-150px;
  margin-top: -10rem; /* Fallback for rem-based layouts */
  /* Add vendor prefixes only if needed, though margin doesn't require them */
}

/* Adjust margin for medium screens 769px to 1200px */
@media (min-width: 769px) and (max-width: 1200px) {
  .dg-hero-content {
    margin-top: 80px !important; /* or any value you want */
  }
}

/* Adjust margin for small screens */
@media (max-width: 768px) {
  .dg-hero-content {
    margin-top: 80px; /* or smaller */
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 400px;
}
.close {
  float: right;
  font-size: 24px;
  cursor: pointer;
}
