/* Overlay style */
    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgb(255 255 255 / 50%);
      display: none; /* Hidden by default */
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }
    /* Popup box style */
    .popup-box {
      background-color: #448c74;
      width: 90%;
      max-width: 400px;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      text-align: center;
    }
    .popup-box h2 {
      margin: 0 0 10px;
            font-size: 30px;
    font-weight: 800;
        color: #fff;
    }
    .popup-box p {
      font-size: 18px;
      color: #fff;
    }
    .close-btn {
      margin-top: 20px;
      padding: 10px 20px;
      background-color: #fff;
      color: #448c74;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    .close-btn:hover {
      background-color: #fff;
    }

.popup-link a{
    background-color: #fff;
    color: #448c74;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 15px;
}
