    <style>
        /* Sidebar General Styling */
.blog-sidebar {
    padding-left: 15px;
}

.sidebar-widget {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.widget-title {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.widget-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #ff4d4d; 
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li a {
    color: #555;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.category-list li a:hover {
    color: #ff4d4d;
    padding-left: 5px;
}

.category-list li span {
    background: #eee;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 20px;
    color: #777;
}

.recent-post-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.recent-post-image img {
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.recent-post-item:hover img {
    transform: scale(1.05);
}

.recent-post-info span.post-date {
    font-size: 13px;
    color: #888;
    display: block;
    margin-bottom: 5px;
}

.recent-post-info h4 {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

.recent-post-info h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-info h4 a:hover {
    color: #ff4d4d;
}

@media (max-width: 991px) {
    .blog-sidebar {
        margin-top: 50px;
        padding-left: 0;
    }
}
