 /* Container */
    .DPL_container {
      background-color: #007bff;
      display: flex;
      justify-content: space-between;
      /*align-items: flex-start !important;*/
      padding: 20px 100px;
      width: 100%;
      flex-wrap: wrap;
      box-sizing: border-box;
      color: #fff;
    }

    /* Text */
    .DPL_text {
      flex: 1;
    }
    .DPL_text p {
      font-size: 18px;
      line-height: 1.4;
    }

    /* Button */
    .DPL_btn {
      flex-shrink: 0;
    }
    #DPL_openFormBtn {
      padding: 12px 24px;
      background: #fff;
      color: #007bff;
      border: 2px solid #fff;
      border-radius: 6px;
      cursor: pointer;
      font-size: 16px;
      transition: 0.3s;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    #DPL_openFormBtn:hover {
      background: #e6e6e6;
    }

    /* Popup Background */
    .DPL_popup {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.6);
      justify-content: center;
      align-items: center;
    }

    /* Popup Content */
    .DPL_popup-content {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      width: 350px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      position: relative;
      animation: DPL_popupFade 0.3s ease-in-out;
    }

    @keyframes DPL_popupFade {
      from { transform: scale(0.8); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    /* Close button */
    .DPL_close {
      position: absolute;
      right: 15px;
      top: 10px;
      font-size: 22px;
      cursor: pointer;
      color: #333;
    }

    /* Form Inputs */
    .DPL_form input, 
    .DPL_form textarea {
      width: 90%;
      padding: 10px;
      margin-bottom: 12px;
      border: 1px solid #ccc;
      border-radius: 5px;
      outline: none;
      font-size: 15px;
    }

    .DPL_form button {
      width: 100%;
      padding: 12px;
      background: #28a745;
      color: #fff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 16px;
    }
    .DPL_form button:hover {
      background: #218838;
    }

    #DPL_responseMsg {
      margin-top: 10px;
      font-size: 14px;
      font-weight: bold;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .DPL_container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 40px;
        justify-content: center;
      }
      .DPL_text p {
        font-size: 16px;
      }
      #DPL_openFormBtn {
        width: 100%;
        max-width: 240px;
      }
    }

    @media (max-width: 576px) {
      .DPL_container {
        /*padding: 15px 20px;*/
      }
      .DPL_text p {
        font-size: 15px;
      }
      #DPL_openFormBtn {
        font-size: 15px;
        padding: 10px 20px;
      }
    }