/* Popup styles */
.popup.homepopup {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.homepopup .popup-content {
  background-color: #fff;
  padding: 30px;
  width: 90%;
  max-width:600px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Close button */
.homepopup .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* Main content styles */
.homepopup .content {
  padding: 40px;
  text-align: center;
}

/* Responsive popup */
@media (max-width: 500px) {
  .homepopup .popup-content {
    padding: 20px;
    width: 90%;
  }
}
