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

body{

    font-family:Arial,Helvetica,sans-serif;
    background:#f7f9fc;
    color:#222;

}

a{

    text-decoration:none;

}

img{

    width:100%;
    display:block;

}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

.blog-section{

    padding:80px 0;

}

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title span{

    color:#1f7a5b;
    font-weight:600;
    letter-spacing:1px;

}

.section-title h2{

    font-size:42px;
    margin:15px 0;

}

.section-title p{

    color:#666;
    max-width:600px;
    margin:auto;
    line-height:1.7;

}

.blog-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.blog-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    color:#222;

}

.blog-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.blog-image{

    overflow:hidden;
    height:240px;
    

}

.blog-image img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;

}

.blog-card:hover img{

    transform:scale(1.08);

}

.blog-content{

    padding:28px;

}

.category{

    display:inline-block;
    background:#eaf7f2;
    color:#1f7a5b;
    padding:7px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;

}

.blog-content h3{

    font-size:24px;
    margin-bottom:15px;
    line-height:1.4;

}

.blog-content p{

    color:#666;
    line-height:1.8;
    margin-bottom:25px;

}

.read-more{

    color:#1f7a5b;
    font-weight:700;
    transition:.3s;

}

.blog-card:hover .read-more{

    padding-left:8px;

}

@media(max-width:991px){

.blog-grid{

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

}

.section-title h2{

font-size:34px;

}

}

@media(max-width:768px){

.blog-grid{

grid-template-columns:1fr;

}

.blog-section{

padding:60px 0;

}

.section-title h2{

font-size:30px;

}

.blog-image{

height:220px;

}

}

@media(max-width:480px){

.container{

width:92%;

}

.blog-content{

padding:22px;

}

.blog-content h3{

font-size:22px;

}

.blog-image{

height:200px;

}

}