.info-icon {
      position: absolute;
      top: 15px;
      right: 15px;
      font-size: 22px;
      color: #007bff;
      cursor: pointer;
      z-index: 10;
    }

    #infoModal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
    }

    #infoModal .modal-content {
      background-color: #fff;
      margin: 10% auto;
      padding: 20px;
      border-radius: 10px;
      width: 60%;
      position: relative;
    }

    #infoModal .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      cursor: pointer;
    }

    /* video Modal Styles */
    #videoModal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .video-content {
            position: relative;
            max-width: auto;
            max-height: auto;
            overflow: hidden;
        }

        .video-content video {
            width: 850px;
            height: 850px;
            border-radius: 20px;
        }


        .dlmodal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.dlmodal-box {
  background-color: #fff;
  margin: 2% auto;
  padding: 50px;
  width: 500px;
  border-radius: 5px;
  position: relative;
}

.dlmodal-box input,
.dlmodal-box select {
  padding: 10px;
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.dlmodal-box .button-container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.dlmodal-box button {
  padding: 10px;
  width: 48%;
  border: none;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

.dlmodal-box button:hover {
  background-color: #0056b3;
}

#closeBtn {
  background-color: gray;
}

#closeBtn:hover {
  background-color: gray;
}

#submitBtn {
  background-color: #CE1126;
}

#submitBtn:hover {
  background-color: #CE1126;
}

/* Hidden Download PDF Link placed below email-download */
.email-download + .download-btn {
  margin-top: 10px;
  display: block;
  padding: 12px 20px;
  background-color: green;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  width: 25%;
  box-sizing: border-box;
}

.download-btn:hover {
  background-color: green;
}

/* Style the Checkbox Container */
.checkbox-container {
  margin-top: 10px;
  display: flex;
  flex-direction: column; 
}

/* Align the label and checkbox side by side */
.checkbox-container label {
  font-size: 14px;
  color: #333;
  display: inline-flex;
  align-items: center;
  gap: 6px; 
  margin-bottom: 10px;
}


/* Style the checkboxes to be smaller */
.checkbox-container input[type="checkbox"] {
  width: 15px; 
  height: 15px;
  margin-left: 10px;
  vertical-align: middle; 
}

/* Style the terms and conditions link */
.checkbox-container a {
  color: #007BFF;
  text-decoration: none;
}

.checkbox-container a:hover {
  text-decoration: underline;
}
