/* HERO */
.trainer-hero{
    padding:0px 0;
    background:linear-gradient(to right,#f9fbff,#eef6f4);
}

.trainer-wrapper{
    display:flex;
    align-items:center;
    gap:50px;
}

/* TEXT */
.trainer-text{
    flex:1;
}

.trainer-text h1{
    font-size:40px;
    color:#2f7d6b;
}

.trainer-text h3{
    margin:10px 0;
    color:#555;
}

.trainer-text p{
    line-height:1.8;
    color:#444;
}

/* BUTTONS */
.trainer-buttons{
    margin-top:20px;
}

.btn-call,
.btn-whatsapp{
    display:inline-block;
    padding:12px 20px;
    margin-right:10px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.btn-call{
    background:#2f7d6b;
    color:#fff;
}

.btn-whatsapp{
    background:#25D366;
    color:#fff;
}

/* IMAGE */
.trainer-image{
    flex:1;
}

.trainer-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* SERVICES */
.trainer-services{
    /* padding:80px 0; */
    background:#f8f9fb;
}

.section-header{
    text-align:center;
    margin-bottom:40px;
}

.section-header h2{
    font-size:32px;
    color:#2f7d6b;
}

/* GRID */
.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* CARD */
.service-card{
    background:#fff;
    padding:25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.icon{
    font-size:40px;
    margin-bottom:10px;
}

.service-card h3{
    margin-bottom:10px;
    font-size:18px;
}

.service-card p{
    font-size:14px;
    color:#555;
}

/* RESPONSIVE */
@media(max-width:992px){
    .trainer-wrapper{
        flex-direction:column;
    }

    .service-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){
    .service-grid{
        grid-template-columns:1fr;
    }

    .trainer-text h1{
        font-size:26px;
    }
}