/* ===== SocialBiwi About Page Styles ===== */

.sb-about-section{
    padding:80px 20px;
    background:#f8f9fb;
}

.sb-about-container{
    max-width:1200px;
    margin:0 auto;
}

.sb-about-title{
    font-size:38px;
    font-weight:700;
    margin-bottom:20px;
    color:#111;
}

.sb-section-heading{
    font-size:28px;
    font-weight:600;
    margin-bottom:15px;
    color:#111;
}

.sb-about-text,
.sb-section-text{
    font-size:16px;
    line-height:1.7;
    color:#555;
    margin-bottom:15px;
}

/* spacing between sections */

.sb-about-intro,
.sb-about-services,
.sb-about-approach,
.sb-about-mission,
.sb-about-why{
    margin-bottom:50px;
}

/* services list */

.sb-services-list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:12px;
    padding:0;
    margin-top:20px;
    list-style:none;
    text-align: center;
    align-items: center;
}

.sb-service-item{
    background:#ffffff;
    padding:14px 18px;
    border-radius:6px;
    border:1px solid #e6e6e6;
    font-size:15px;
    color:#333;
    transition:all 0.3s ease;
}

.sb-service-item:hover{
    transform:translateY(-3px);
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

/* responsive */

@media (max-width:768px){

    .sb-about-section{
        padding:60px 15px;
    }

    .sb-about-title{
        font-size:30px;
    }

    .sb-section-heading{
        font-size:22px;
    }

    .sb-about-text,
    .sb-section-text{
        font-size:15px;
    }

}
