        /* Step 1: Style the popup background */
        .popup-overlay {
            display: none; /* Hidden by default */
            position: fixed; /* Stays fixed on screen */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Transparent dark background */
            z-index: 1000; /* On top of other content */
        }

        /* Step 2: Style the popup form */
        .popup-form {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            width: 300px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            z-index: 1001; /* On top of the background */
        }
		h2.popup-form {
		   font: "Courier New",Courier;
		   font-size:.87rem;
		}  
        /* Step 3: Style form elements */
        .popup-form input[type="text"],
        .popup-form input[type="email"],
		.popup-form input[type="tel"],
		.popup-form textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-sizing: border-box;
        }

        .popup-form button {
            width: 95%;
            padding: 12px;
            background-color: #3498db;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .popup-form button:hover {
            background-color: #2980b9;
        }

        /* Step 4: Style the close button */
        .close-btn {
            background-color: red;
            color: white;
            border: none;
            padding: 5px 10px;
            border-radius: 5px;
            cursor: pointer;
            position: absolute;
            top: 10px;
            right: 10px;
        }

        .close-btn:hover {
            background-color: darkred;
        }

        /* Button to open the popup */
        .open-popup-btn {
            padding: 12px 20px;
            background-color: #dfcdbb;
            color: #76455e;
			font-size: 1.05em;
			font-style:bold;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .open-popup-btn:hover {
            background-color: #f6dabf;
        }
    