
        .blog-section {
            background-color: #809496;
            max-width: 100%;
            margin: 0 auto;
            padding: 20px;
        }

        .blog-heading {
            text-align: center;
            font-size: 2.5em;
            color: #333;
            margin-bottom: 30px;
        }

        .blogs-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .blog-card {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }

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

        .blog-card-img-wrapper {
            width: 100%;
            height: 200px; /* Fixed height for consistency */
            overflow: hidden;
        }

        .blog-card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-card-content {
            padding: 15px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-card-title {
            font-size: 1.2em;
            font-weight: bold;
            color: #0056b3;
            margin-bottom: 10px;
        }

        .blog-card-desc {
            font-size: 0.9em;
            color: #666;
            line-height: 1.5;
        }

        .blog-card-readmore {
            display: inline-block;
            margin-top: 10px;
            color: #007bff;
            text-decoration: none;
            font-weight: bold;
        }

        .blog-card-readmore:hover {
            text-decoration: underline;
        }

        /* --- Mobile Responsiveness --- */
        @media (max-width: 768px) {
            .blogs-wrapper {
                grid-template-columns: 1fr; /* Stacks cards on top of each other */
            }

            .blog-section {
                padding: 10px;
            }

            .blog-heading {
                font-size: 2em;
            }

            .blog-card-img-wrapper {
                height: 250px; /* Adjust image height for better mobile viewing */
            }
            .blog-card-img-wrapper img{
                 width: 100%;
            height: auto;
            object-fit: cover;
            }
                
            }
        }