/* ---------- Trial Card Horizontal ---------- */
.trial-wrapper{
    display:flex;
    justify-content:center;
    margin:40px auto;
    max-width:1200px;
}
.trial-card{
    display:flex;
    flex-direction:row;          /* horizontal layout */
    background:#fff;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    overflow:hidden;
    width:100%;
    max-width:900px;
    transition:transform .3s, box-shadow .3s;
}
.trial-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}
.trial-img{
    flex:1 1 40%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f0f2f5;
}
.trial-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.trial-content{
    flex:1 1 60%;
    padding:40px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.trial-title{
    font-size:2em;
    margin:0 0 10px;
    color:#333;
}
.trial-desc{
    color:#666;
    line-height:1.6;
    margin-bottom:25px;
}
.trial-btn{
    display:inline-block;
    padding:12px 25px;
    background:#007bff;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:background .3s;
}
.trial-btn:hover{background:#0056b3;}
@media(max-width:768px){
    .trial-card{flex-direction:column;}
}
