.services{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding: 20px;
    padding-top: 40px;
}
.services_description{
    margin: 0;
    margin-bottom: 20px;
    font-size: 1.2em;
    line-height: 1.3em;
    text-align: center;
    width: 100%;
    max-width: 900px;
}
.services_article{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}
.service{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    max-width: 350px;
    padding: 0 10px;
    position: relative;
    margin-bottom: 40px;
}
.service_title{
    font-size: 1.3em;
    margin: 0;
    margin-bottom: 20px;
    white-space: nowrap;
}
.service p{
    margin: 0;
    text-wrap: pretty;
    text-align: center;
    font-size: 1.1em;
    line-height: 1.2em;
    padding-bottom: 60px;
}

.service_img{
    width: 170px;
    border-radius: 50%;
    padding: 20px;
    box-sizing: border-box;
}
.service_button {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 250px;
    height: 50px;
    font-size: 1em;
    color: #fff;
    background: linear-gradient(45deg, #01653E, #068655);
    border: none;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
@media only screen and (min-width: 700px) {
    .services{
        padding-top: 80px;
    }
    .services_description{
        margin-bottom: 20px;
        font-size: 1.4em;
        line-height: 1.4em;
        margin-bottom: 60px;
    }
    
}
@media only screen and (min-width: 980px) {
    .services_article{
        flex-direction: row;
        align-items: center;
    }
    .service{
        height: 450px;
        padding: 0 20px;
    }
    .service_title{
        font-size: 1.5em;
    }
    .service p{
        font-size: 1.2em;
        line-height: 1.3em;
       
    }
}