    /* Basic page style */
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
      }
  
      /* Popup overlay */
      .popup-overlay {
        position: fixed;
        top: 0;
        left: -2px;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.18);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
      }
  
      /* Popup box */
      .popup-box {
        background: linear-gradient(90deg, #e73229, #f28c13) !important;
        color: #fff;
        padding: 40px;
        border-radius: 10px;
        width: 90%;
        max-width: 600px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        position: relative;
      }
  
      .popup-box h2 {
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 28px;
      }
  
      .popup-box input[type="tel"] {
        width: 100%;
        padding: 12px;
        margin: 15px 0;
        margin-bottom: 40px;
        border: 1px solid #ccc;
        border-radius: 5px;
      }

      .popup-box input[type="text"] {
        width: 100%;
        padding: 12px;
        margin: 15px 0;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
      }
  
      .popup-box button {
        padding: 10px 20px;
        border-radius: 10px;
        cursor: pointer;
        font-size: 18px;
        background: linear-gradient(90deg, #e73229, #f28c13);
        color: white;
        border: 1px solid #fff;
        align-self: center;
      }
  
      .popup-box .close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 20px;
        cursor: pointer;
      }