.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  overflow: hidden;
}

.popup-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  border-radius: 20px;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  transtion: all 0.3s ease-in-out;
}

.close:hover {
  color: red;
}

/* ul {
  padding: 0;
  list-style-type: bullets;
} */

ul li {
  margin-bottom: 5px;
}


.popup-content h2 {
  margin-top: 10px;
}

.popup-content a {
  color: black;
  font-size: 18px;
  margin-right: 5px;
}

/* Existing CSS remains unchanged */

#newsletterPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  overflow: hidden;
}

#newsletterPopup .popup-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
  width: 80%;
  max-width: 600px;
    border-radius: 5px;
    position: relative;
}

#newsletterPopup .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

#newsletterPopup .close:hover {
    color: red;
}

#newsletterPopup form {
    margin-top: 20px;
}

#newsletterPopup form label {
    display: block;
    margin-bottom: 5px;
}

#newsletterPopup form input[type="email"] {
    width: 90%;
    padding: 8px;
    margin-bottom: 10px;
}

#newsletterPopup form button {
    background-color: #4CAF50;
    color: white;
    padding: 13px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#newsletterPopup form button:hover {
    background-color: #45a049;
}