/* Overlay */
    @media(max-width:767px){
        #popup-box h1 {
            font-size: 16px !important;
        }
        #popup-box h2 {
            font-size: 12px !important;
        }
        #popup-box p {
            font-size: 10px !important;
        }
    }
    #popup-overlay {
      display: none; /* Hidden by default */
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 999;
    }

    /* Popup box */
    #popup-box {
      position: absolute;
      top: 55%; 
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      width: 100%;
      max-width: 800px;
      box-shadow: 0 0 15px rgba(0,0,0,0.3);
      text-align: center;
    }

    #popup-box h2 {
      margin-top: 0;
      font-size: 16px;
    }
    #popup-box h1 {
      font-size: 24px;
    }
    #popup-box p {
      font-size: 13px;
    }

    #popup-box button {
      margin-top: 20px;
      padding: 10px 20px;
      background-color: #00622F;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    #popup-box button:hover {
      background-color: #00622fde;
    }
    .message {
      background: #f9f9f9;
      border: 1px solid #ddd;
      border-radius: 12px;
      padding: 16px;
      text-align: left;
      font-size: 14px;
      line-height: 1.5;
      margin-bottom: 20px;
    }
    .message a {
      color: #0077a3;
    }

    
    