body{
    background:#f4f7f9;
    font-family:Arial;
}

.agreement-wrapper{
    max-width:1000px;
    margin:50px auto;
    background:#fff;
    padding:40px;
    border-radius:12px;
}

.agreement-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.company-logo{
    width:120px;
    height:120px;
    background:#eee;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
}

.company-info h2{
    margin:0;
}

.agreement-title{
    background:#008b8b;
    color:#fff;
    padding:20px;
    text-align:center;
    font-size:28px;
    font-weight:bold;
    border-radius:8px;
    margin-bottom:40px;
}

.form-section{
    margin-bottom:40px;
}

.form-section h3{
    margin-bottom:20px;
    font-size:24px;
    color:#222;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.full-width{
    grid-column:1/3;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.form-group input,
.form-group select{
    width:100%;
    height:50px;
    padding:0 15px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
}

@media(max-width:768px){

    .form-grid{
        grid-template-columns:1fr;
    }

    .full-width{
        grid-column:unset;
    }

    .agreement-header{
        flex-direction:column;
        text-align:center;
    }

}

.deposit-box{
    background:#f8f8f8;
    padding:30px;
    border-radius:10px;
    margin-top:30px;
    text-align:center;
}

.payment-buttons{
    display:flex;
    gap:20px;
    justify-content:center;
    margin-top:20px;
}

.payment-buttons a{
    padding:15px 30px;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:bold;
}

.venmo-btn{
    background:#008cff;
}

.square-btn{
    background:#000;
}

.terms-box{
    height:500px;
    overflow-y:auto;
    border:1px solid #ddd;
    padding:30px;
    border-radius:10px;
    background:#fafafa;
}

.terms-box h4{
    margin-top:30px;
    color:#008b8b;
}

.cancel-table{
    width:100%;
    border-collapse:collapse;
    margin-top:15px;
}

.cancel-table th,
.cancel-table td{
    border:1px solid #ccc;
    padding:15px;
}

.agreement-check{
    margin:40px 0;
    font-size:18px;
}

.signature-wrapper{
    margin-top:40px;
}

#signature-pad{
    width:100%;
    height:250px;
    border:2px dashed #008b8b;
    border-radius:10px;
    background:#fff;
}

.signature-buttons{
    margin-top:20px;
}

.signature-buttons button{
    background:red;
    color:#fff;
    border:none;
    padding:12px 25px;
    border-radius:8px;
    cursor:pointer;
}

.submit-area{
    margin-top:50px;
    text-align:center;
}

.submit-btn{
    background:#008b8b;
    color:#fff;
    border:none;
    padding:20px 40px;
    font-size:20px;
    border-radius:10px;
    cursor:pointer;
}

.success-screen{
    text-align:center;
    padding:60px 20px;
}

.success-icon{
    width:100px;
    height:100px;
    background:#28a745;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:50px;
    margin:0 auto 30px;
}

.summary-box{
    max-width:500px;
    margin:30px auto;
    background:#f7f7f7;
    padding:30px;
    border-radius:10px;
    text-align:left;
}

.success-buttons{
    margin-top:30px;
    display:flex;
    gap:20px;
    justify-content:center;
}

.download-btn,
.print-btn{
    background:#008b8b;
    color:#fff;
    padding:15px 30px;
    border-radius:8px;
    text-decoration:none;
    border:none;
    cursor:pointer;
}