*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Segoe UI", sans-serif;
    background:#F8F6F1;
    color:#2F3A33;
    line-height:1.8;
}

.container{
    width:90%;
    /* max-width:1200px; */
    margin:auto;
}

/* NAVBAR */

.header{
    background:#4F6F52;
}

/* HERO */

.services-hero{
    text-align:center;
    padding:100px 0 80px;
}

.services-hero h1{
    font-size:4rem;
    font-weight:300;
    color:#4F6F52;
    margin-bottom:20px;
}

.services-hero p{
    max-width:700px;
    margin:auto;
    font-size:1.2rem;
    color:#6B756E;
}

/* SERVICES */

.services{
    padding-bottom:100px;
}

.services-container{
    display:grid;
    grid-template-columns:repeat(3,minmax(320px,1fr));
    gap:30px;
}

.service-card{
    background:white;
    padding:40px;
    border-radius:20px;
    text-align:center;

    box-shadow:0 4px 20px rgba(0,0,0,.05);

    transition:all .3s ease;
}

.service-card:hover{
    transform:translateY(-8px);

    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.icon{
    width:80px;
    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#F2F7F1;

    display:flex;
    justify-content:center;
    align-items:center;
}

.icon i{
    font-size:2rem;
    color:#7BAE7F;
}

.service-card h3{
    font-size:1.8rem;
    color:#2F3A33;
    margin-bottom:15px;
}

.service-card p{
    color:#6B756E;
    margin-bottom:25px;
}

/* BUTTONS */

.card-btn,
.cta-btn{
    display:inline-block;

    padding:14px 32px;

    background:#7BAE7F;

    color:white;
    text-decoration:none;

    border-radius:40px;

    transition:.3s;
}

.card-btn:hover,
.cta-btn:hover{
    background:#4F6F52;
}

/* CTA */

.services-cta{
    background:#EFE9DE;
    text-align:center;
    padding:80px 0;
    border-top:1px solid #D8E2D5;
}

.services-cta h2{
    color:#4F6F52;
    font-size:2.5rem;
    margin-bottom:20px;
}

.services-cta p{
    color:#6B756E;
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
}

.services-cta .cta-btn{
    background:#4F6F52;
    color:white;
}

.services-cta .cta-btn:hover{
    background:#F2F2F2;
}

/* MOBILE */

@media(max-width:768px){

    .services-hero{
        padding:80px 0 60px;
    }

    .services-hero h1{
        font-size:2.8rem;
    }

    .services-hero p{
        font-size:1rem;
    }

    .services-cta h2{
        font-size:2rem;
    }

    .service-card{
        padding:30px;
    }
}

@media(max-width: 900px){
    .services-container{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media(max-width: 600px){
    .services-container{
        grid-template-columns:1fr;
    }

    .service-card{
        padding:30px 20px;
    }
}