  #popupContainer {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
  }
  #popupContent {
    background: #fff;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    border-radius: 8px;
  }
  #closePopup {
    float: right;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
  }
  /* Custom form styling */
  .hs-form input[type="text"],
  .hs-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  .hs-form .hs-button {
    background: #0073e6;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  .hs-form .hs-button:hover {
    background: #005bb5;
  }