.pdf-download-wrapper{
    max-width:650px;
    margin:50px auto;
    padding:40px;
    background:#ffffff;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.pdf-download-wrapper h2{
    font-size:42px;
    margin-bottom:25px;
    text-align:center;
    color:#111;
}

.dynamic-pdf-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.dynamic-pdf-form input{
    width:100%;
    height:58px;
    border:1px solid #dcdcdc;
    border-radius:10px;
    padding:0 18px;
    font-size:16px;
    outline:none;
    transition:0.3s;
    box-sizing:border-box;
}

.dynamic-pdf-form input:focus{
    border-color:#00473C;
    box-shadow:0 0 0 3px rgba(105,190,40,0.15);
}

.dynamic-pdf-form button{
    height:58px;
    border:none;
    border-radius:10px;
    background:#00473C;
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.dynamic-pdf-form button:hover{
    background:#00473C;
    transform:translateY(-2px);
}

@media(max-width:767px){

    .pdf-download-wrapper{
        padding:25px;
    }

    .pdf-download-wrapper h2{
        font-size:32px;
    }

}