/* ==========================
   TRUST STRIP
========================== */

.trust-strip{

    background:#ffffff;

    padding:35px 0;

    border-top:1px solid #eee;

    border-bottom:1px solid #eee;

}

.trust-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.trust-item{

    display:flex;

    align-items:center;

    gap:18px;

    padding:12px;

}

.trust-item i{

    font-size:42px;

    color:#8B5E3C;

    min-width:42px;

}

.trust-item h5{

    margin:0;

    font-size:18px;

    font-weight:700;

}

.trust-item small{

    color:#666;

    font-size:14px;

}

@media(max-width:992px){

.trust-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.trust-grid{

grid-template-columns:1fr;

}

}
/* ==========================
   SECTION HEADINGS
========================== */

.section-title{

    text-align:center;

    margin-bottom:50px;

}

.section-title h2{

    font-size:46px;

    font-weight:700;

    color:#222;

    margin-bottom:12px;

}

.section-title p{

    font-size:18px;

    color:#666;

    max-width:650px;

    margin:auto;

    line-height:1.7;

}
