.home5g-div h3 {
  font-size: 1.5rem; /* Adjust this value as needed */
}

.home5g-div h2 {
  font-size: 1.75rem; /* Adjust this value as needed */
}

/* Modal styles */
.modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);

  /* Use flexbox for centering */
  justify-content: center;  /* horizontal center */
  align-items: center;      /* vertical center */
}

.modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 20px;
  width: 400px;
  border-radius: 8px;
  text-align: center;

  /* Remove margin to avoid conflict with flexbox */
  margin: 0;
  position: relative; /* for close button positioning */
}

.close {
   position: absolute;
   top: 10px;
   right: 10px;
   background: transparent;
   border: none;
   font-size: 24px;
   cursor: pointer;
 }
