 #newsletterPopup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index:10000;
    }

    #newsletterContent {
        background-color: #fff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        max-width: 450px;
        text-align: center;
    }
    
    #newsletterContent img{
        width:60% !important;
        margin-bottom:20px;
    }
    
    #newsletterSubscribeForm input{
    width: 90%;
    height: 35px;
    padding-left: 5px;
    border: 1px solid #E0E5F2;
    margin-bottom:15px;
    }
    
    #newsletterSubscribeForm select{
    width: 90%;
    height: 35px;
    padding-left: 5px;
    border: 1px solid #E0E5F2;
    margin-bottom:15px;
    }
    
    #newsletterSubscribeForm button{
         padding: 8px 15px;
        border: none;
        background-color: #007bff;
        color: #fff;
        border-radius: 4px;
        width:220px !important;
        margin-bottom:15px;
    }

    #newsletterForm {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px 0;
    }

    #newsletterForm input {
        padding: 8px;
        flex: 1;
        border: 1px solid #ccc;
        border-radius: 4px;
        margin-right: 5px;
    }

    #newsletterForm button {
        padding: 8px 15px;
        border: none;
        background-color: #007bff;
        color: #fff;
        border-radius: 4px;
        cursor: pointer;
    }

    #closePopup {
        margin-top: 10px;
        cursor: pointer;
        border: none;
        background-color: transparent;
        color: #007bff;
        text-decoration: underline;
    }
    
    #newsletterPopup h2{
        font-size:18px;
        margin-bottom:15px;
        color:#ff4ac2;
    }
    
    #newsletterPopup p{
        font-size:14px;
        margin-bottom:10px;
    }
    
    
    /* Media query for mobile devices (up to 767px) */
    @media screen and (max-width: 767px) {
      /* Styles for mobile devices go here */
      
      #newsletterContent{
          min-width:80% !important;
      }
    }
    
    /* Media query for tablets (768px to 1023px) */
    @media screen and (min-width: 768px) and (max-width: 1023px) {
      /* Styles for tablets go here */
      #newsletterContent{
          min-width:400px !important;
      }
    }
    
    /* Media query for laptops (1024px to 1365px) */
    @media screen and (min-width: 1024px) and (max-width: 1365px) {
      /* Styles for laptops go here */
      #newsletterContent{
          min-width:400px !important;
      }
      
    }
    
    /* Media query for large screens (min 1366px) */
    @media screen and (min-width: 1366px) {
      /* Styles for large screens go here */
      #newsletterContent{
          min-width:400px !important;
      }
    }