.appointment-section{
    display:flex;
    gap:25px;
    padding:60px 6%;
}

.appointment-left{
    flex:2;
}

.appointment-right{
    flex:1;
}

.appointment-card,
.why-box,
.help-box{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.appointment-card h2,
.why-box h2,
.help-box h2{
    color:#0b4ea2;
    margin-bottom:25px;
}

.form-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.input-box{
    flex:1;
}

.input-box label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.input-box input,
.input-box select,
.input-box textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    height: 120px;
    resize: none;
}

.appointment-btn{
    width:100%;
    background:#1fa15d;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:10px;
    font-size:18px;
    cursor:pointer;
    margin-top:15px;
}

.why-item{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.why-item i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#eef8ef;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#1fa15d;
    font-size:24px;
}

.help-box{
    margin-top:25px;
}

.help-box p{
    margin:15px 0;
    color:#444;
}


/* =========================
   TABLET (768px - 1024px)
========================= */
@media (max-width:1024px){

    .appointment-section{
        flex-direction:column;
        padding:40px 5%;
    }

    .appointment-left,
    .appointment-right{
        width:100%;
    }

    .form-row{
        flex-direction:column;
        gap:15px;
    }

    .appointment-card,
    .why-box,
    .help-box{
        padding:25px;
    }

}

