
        /* Style for the popup background overlay */
        #popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1051;
            overflow: hidden; /* Prevents scrolling when popup is active */
        }

        /* Style for the popup dialog box */
        #popup-box {
            display: inherit;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 1052;
            max-width: 90%; /* Adjust for mobile responsiveness */
            max-height: 85%; /* Limit height for scrollability */
            overflow-y: auto; /* Enables vertical scrolling */
            width: 600px; /* Wider popup for desktop */
        }

        #popup-box h2 {
            margin: 0 0 10px;
        }

        #popup-box p {
            margin: 10px 0;
            line-height: 1.5;
        }

        #popup-box button {
            background: #0078D4;
            color: #fff;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            cursor: pointer;
        }

        #popup-box button:hover {
            background: #005fa3;
        }

        /* Media query for extra responsiveness */
        @media (max-width: 600px) {
            #popup-box {
                width: 90%;
                padding: 15px;
            }
        }

        .responsive-button {
            color: #fff;
            border: none;
            padding: 15px 25px;
            border-radius: 8px;
            font-size: 16px;
            cursor: pointer;
            transition: transform 0.3s ease; /* Smooth transition for hover */
            width: 100%; /* Makes it mobile-friendly */
            max-width: 300px; /* Limit max width for larger screens */
            text-align: center;
            margin: 10px auto;
            display: block;
        }

        /* Hover effect: Enlarges the button */
        .responsive-button:hover {
            transform: scale(1.2); /* Increase size by 20% */
        }

        #policy_content {
            display: none !important;
        }
        #terms_condition {
            display: none !important;
        }