.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.all-blog-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #fe5411ff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
	margin: 30px;
}

.all-blog-btn:hover {
    background: #fe1130;
    transform: translateY(-2px);
}
.blog-page {
    padding: 20px 0;
}

.blog-title {
    text-align: center;
    color: #fe5411;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 10px;
}


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


.blog-card {
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    text-decoration:none;
    color:#fe5411ff;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
	margin:30px;
	margin-top:10px;
}


.blog-card:hover {
    transform:translateY(-5px);
}


.blog-img img {
    width:100%;
    height:230px;
    object-fit:cover;
}


.blog-content {
    padding:20px;
}


.blog-content h2 {
    font-size:21px;
    margin-bottom:12px;
}


.blog-content p {
    color:#666;
    line-height:1.6;
}
.container{
    max-width: 1200px;
    margin: 60px auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

h1{
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.blog-image{
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.content{
    font-size: 16px;
    line-height: 1.8;
}

.content img{
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 15px 0;
}
.blog-title-link{
    text-decoration: none;
    display: inline-block;
	margin:40px;
	margin-bottom:5px;
	color: #fe5411ff;
}

.blog-title-link:hover .section-title{
    color: #e84a12;
}
@media(max-width:992px){

.blog-grid{
grid-template-columns:repeat(2,1fr);
}

}


@media(max-width:600px){

.blog-grid{
grid-template-columns:1fr;
}

.page-title{
font-size:28px;
}
  .container{
        margin: 15px;
        padding: 15px;
    }

    h1{
        font-size: 22px;
    }

    .blog-image{
        max-height: 250px;
    }
}