#popup-form-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.popup-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    width: 90%;
    max-width: 350px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
}
.popup-form-box h2 {
    color: #C774B2;
    margin-bottom: 10px;
}
.popup-form-box input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.popup-form-box button {
    background-color: #C774B2;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}
.popup-form-box label {
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
}
@media screen and (max-width: 600px) {
    .popup-form-box {
        padding: 20px;
        width: 90%;
    }
}