.cf7-custom-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 100px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.cf7-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}
.cf7-custom-popup-content {
    text-align: center;
}

#cf7-custom-popup-button {
    margin-top: 10px;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
}

#cf7-custom-popup-button:hover {
    background: #005177;
}

@media screen and (max-width: 480px) {
    .cf7-custom-popup {
        width: 70%;
        padding: 20px !important;
       
    }

    
}