h1, h2, h3, h4, h5 {
    line-height: 1;
    color: #ff7f0b !important;
}
.blogs {
    font-family: Arial, sans-serif;
    /* margin: 20px; */
}
.blogs header {
    text-align: center;
    margin-bottom: 30px;
}
.blogs .blog-list {
    list-style: none;
    padding: 0;
}
.blogs .blog-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 15px;
    transition: box-shadow 0.3s ease;
}
.blogs .blog-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.blogs .blog-item h3 {
    margin-top: 0;
    color: #ff7f0b;
}
.blogs .blog-item p {
    margin: 10px 0;
}
.blogs .blog-item a {
    text-decoration: none;
    color: #ff7f0b;
    font-weight: bold;
}
.blogs .blog-item a:hover {
    text-decoration: underline;
}