    /* HEADER */
.blog-header{
    text-align:center;
    padding:60px 20px;
}

.blog-header h1{
    font-size:36px;
    color:#2f7d6b;
}

.blog-header p{
    color:#666;
    margin-top:10px;
}

/* GRID */
.blog-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* CARD */
.blog-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    transition:0.3s;
}

.blog-card:hover{
    transform:translateY(-5px);
}

.blog-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.blog-content{
    padding:15px;
}

.tag{
    font-size:12px;
    color:#2f7d6b;
}

.blog-content h3{
    font-size:18px;
    margin:10px 0;
}

.blog-content p{
    font-size:14px;
    color:#555;
}

.blog-content button{
    margin-top:10px;
    background:none;
    border:none;
    color:#2f7d6b;
    cursor:pointer;
    font-weight:600;
}

/* MODAL */
.modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.modal-content{
    background:#fff;
    width:80%;
    max-width:800px;
    border-radius:20px;
    overflow:hidden;
    position:relative;
}

.modal-content img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.modal-body{
    padding:20px;
}

.modal-body h2{
    margin-bottom:10px;
}

.modal-body p{
    line-height:1.7;
    color:#444;
}

.close{
    position:absolute;
    top:10px;
    right:15px;
    font-size:25px;
    cursor:pointer;
}

/* CALL BUTTON */
.call-btn{
    display:inline-block;
    margin-top:15px;
    background:#22c55e;
    color:#fff;
    padding:12px 20px;
    border-radius:8px;
    text-decoration:none;
}

/* RESPONSIVE */
@media(max-width:992px){
    .blog-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){
    .blog-grid{
        grid-template-columns:1fr;
    }
}