        /* Blog Page Section */
        .blog-page {
            padding-top: 40px;
            padding-bottom: 90px;
            background-color: #f9f9f9;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Blog Item Wrapper */
        .blog-item {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .blog-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        /* Blog Image */
        .blog-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Blog Author Info */
        .blog-author {
            padding: 15px 20px 0;
            font-size: 14px;
            color: #777;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .blog-author i {
            color: #555;
            margin-right: 5px;
        }

        /* Blog Text Content */
        .blog-text {
            padding: 20px;
        }

        .blog-text h3 {
            font-size: 20px;
            margin: 0 0 10px;
            font-weight: 600;
            color: #333;
        }

        .blog-text h3 a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        .blog-text h3 a:hover {
            color: #007BFF;
        }

        .blog-text p {
            font-size: 15px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        /* Small Button */
        .sm_btn {
            display: inline-block;
            padding: 8px 15px;
            font-size: 14px;
            background-color: #007BFF;
            color: #fff;
            text-decoration: none;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }

        .sm_btn:hover {
            background-color: #0056b3;
        }

        /* Responsive Adjustments */
        @media (max-width: 991.98px) {
            .blog-author {
                font-size: 13px;
            }

            .blog-text h3 {
                font-size: 18px;
            }

            .blog-text p {
                font-size: 14px;
            }
        }

        @media (max-width: 575.98px) {
            .blog-item {
                margin-bottom: 25px;
            }

            .blog-text {
                padding: 15px;
            }
        }