header{
    margin-top: -150px;
}


/* Blog Section Styling */
.blog-section {
    margin-top: 150px;
    padding: 50px 20px;
    text-align: center;
}

.blog-section img {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}
.blog-section h1 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.blog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s;
}

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

.post-title {
    font-size: 20px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.post-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.post-excerpt {
    font-size: 16px;
    height: 95px;
    overflow: hidden;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.read-more-btn {
    display: inline-block;
    background-color: #ff3333;
    color: #ffffff;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #e60000;
}

.read-more-btn i {
    margin-left: 5px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .blog-post {
        width: 100%;
        max-width: 350px;
    }
}