.footer-popup {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}


.popup-inner {
    overflow-y: auto;
    height: 100%;
    max-height: 600px;
    height: 75vh;
    text-align: left;
}
.footer-popup-content {
  background: #fff;
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

.close-popup {
    position: absolute;
    top: -15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 24px;
    height: 24px;
    right: -15px;
    color: #ffffff;
    background: #1c1c1c;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    line-height: normal;
    padding: 0px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 600px) {
  .footer-popup-content {
    max-width: 95%;
    padding: 15px;
  }
}
