


 /* Filter bar container */
                .filter-bar {
                    display: flex;
                    align-items: center;
                    /* Center items vertically */
                    padding: 10px;
                    /* Add some padding */
                }

                /* Links container */
                .filter-links {
                    display: flex;
                    gap: 5px;
                    /* Reduced space between links */
                    width: 100%;

                }

                /* Link styles */
                .filter-bar a {
                    padding: 8px 16px;
                    /* Add padding to links */
                    color: #00000086;
                    /* Green text color */
                    text-decoration: none;
                    /* Remove underline */
                    font-size: 14px;
                    /* Font size */
                    font-weight: 500;
                    border-radius: 5px;
                    /* Rounded corners */
                    transition: color 0.3s ease;
                    /* Smooth hover effect */
                }

                .filter-bar a:hover {
                    color: #F4C430;
                    /* Darker green on hover */
                }

                .filter-bar a.active {
                    color: #3C873A;
                    /* Green text for active link */
                    text-decoration: underline;
                    /* Underline for active link */
                    text-underline-offset: 4px;
                    /* Space between text and underline */
                }

                /* Search bar styles */
                .search-bar {
                    margin-left: 499px;

                    /* Add margin to the left of the search bar */
                }

                .search-bar input {
                    padding: 8px 16px;
                    /* Add padding to input */
                    border: 1px solid #ddd;
                    /* Light border */
                    border-radius: 5px;
                    /* Rounded corners */
                    font-size: 14px;
                    /* Font size */
                    width: 200px;
                    /* Set a fixed width for the search bar */
                }

                /* Responsive adjustments */
                @media (max-width: 768px) {
                    .filter-bar {
                        flex-direction: column;
                        /* Stack items vertically on small screens */
                        align-items: stretch;
                        /* Stretch items to full width */
                        gap: 5px;
                        /* Space between items */
                    }

                    .filter-links {
                        flex-direction: column;
                        /* Stack links vertically on small screens */
                        align-items: stretch;
                        /* Stretch links to full width */
                        gap: 5px;
                        /* Reduced space between links */
                    }

                    .search-bar {
                        margin-left: 0;
                        /* Remove margin on small screens */
                        width: 100%;
                        /* Full width for search bar on small screens */
                       
                    }

                    .filter-bar a,
                    .search-bar input {
                        width: 100%;
                        /* Full width for links and input on small screens */
                        text-align: center;
                        /* Center text on small screens */
                        
                    }
                }

                /* Blog Grid */
                .blog-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                    gap: 2rem;
                    margin-bottom: 2rem;
                    margin-top: 2rem;
                }

                .blog-card {
                    display: flex;
                    flex-direction: column;
                    gap: 0.4rem;
                    /* Space between image and content */
                }

                .blog-image {
                    border-radius: 8px;
                    overflow: hidden;
                    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
                    height: 200px;
                    /* Set a fixed height for the image container */
                }

                .blog-image img {
                    width: 100%;
                    height: 100%;
                    /* Make the image cover the container */
                    object-fit: cover;
                    /* Ensure the image covers the container while maintaining aspect ratio */
                    display: block;
                    /* Remove extra space below the image */
                }

                .blog-content {
                    background: white;
                    border-radius: 8px;
                    padding: 1rem;
                    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    height: 88px;
                    width:100%;
                    /* Ensure content takes full height */
                }

                .content-header {
                    display: flex;
                    align-items: center;
                    /* Align icon and title vertically */
                    gap: 0.75rem;
                    /* Space between icon and title */
                }

                .pdf-icon {
                    width: 52.63px;
                    /* Set width for the PDF icon */
                    height: auto;
                    /* Maintain aspect ratio */
                }

                .blog-title {
                    font-size: 1.1rem;
                    margin: 0;
                    /* Remove default margin */
                    flex: 1;
                    /* Allow title to take remaining space */
                }

                .read-more {
                    color: #2E7D32;
                    text-decoration: none;
                    font-weight: 500;
                    align-self: flex-end;
                    /* Align to the right */
                    margin-top: auto;
                    /* Push to the bottom */
                }