.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9999;
  }
  
  .popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    z-index: 10000;
    display: none;
  }
  
  .popup-content {
    padding: 20px;
    text-align: center;
  }
  
  .popup-image img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  h2 {
    font-size: 1.5em;
    margin: 0 0 10px 0;
  }
  
  p {
    font-size: 1em;
    color: #555;
  }
  
  .close-btn {
    position: absolute;
    top: 0px;
    right: 2px;
    font-size: 1.5em;
    cursor: pointer;
    color: #333;
  }
  .learnMore {
    text-decoration: underline;
}