  /* New Blog Cards Styling */
          .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
          }
          
          .blog-card {
            background-color: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
          }
          
          .blog-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 60px rgba(46,125,50,0.2);
          }
          
          .blog-image {
            position: relative;
            height: 240px;
            overflow: hidden;
          }
          
          .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
          }
          
          .blog-card:hover .blog-image img {
            transform: scale(1.1);
          }
          
          .blog-date {
            position: absolute;
            bottom: -20px;
            left: 20px;
            background: var(--primary);
            color: var(--white);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 10;
            border: 3px solid var(--white);
            transition: all 0.3s ease;
          }
          
          .blog-card:hover .blog-date {
            background: var(--secondary);
            color: var(--primary);
            transform: scale(1.1);
          }
          
          .blog-date .day {
            font-size: 1.4rem;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 2px;
          }
          
          .blog-date .month {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
          }
          
          .blog-content {
            padding: 30px 25px 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            position: relative;
          }
          
          .blog-category {
            position: absolute;
            top: -15px;
            right: 20px;
            background: var(--secondary);
            color: var(--primary);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.8rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            z-index: 5;
            transition: all 0.3s ease;
          }
          
          .blog-card:hover .blog-category {
            background: var(--primary);
            color: var(--white);
          }
          
          .blog-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
            margin: 10px 0 15px;
            line-height: 1.3;
            transition: color 0.3s ease;
          }
          
          .blog-card:hover .blog-title {
            color: var(--accent);
          }
          
          .blog-excerpt {
            color: var(--text);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
          }
          
          .blog-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #e0e0e0;
            color: #666;
            font-size: 0.85rem;
          }
          
          .blog-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
          }
          
          .blog-meta i {
            color: var(--primary);
          }
          
          .btn-read-more {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 30px;
            background: rgba(46,125,50,0.1);
            transition: all 0.3s ease;
            width: fit-content;
            margin-top: auto;
          }
          
          .btn-read-more i {
            transition: transform 0.3s ease;
          }
          
          .btn-read-more:hover {
            background: var(--primary);
            color: var(--white);
          }
          
          .btn-read-more:hover i {
            transform: translateX(5px);
          }
          
          /* Featured Blog */
          .featured-blog {
            margin-bottom: 40px;
            background: linear-gradient(135deg, rgba(46,125,50,0.05) 0%, rgba(21,101,192,0.05) 100%);
            border-radius: 20px;
            padding: 30px;
            position: relative;
            overflow: hidden;
          }
          
          .featured-blog::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: var(--secondary);
            opacity: 0.1;
            border-radius: 0 0 0 100%;
          }
          
          .featured-blog::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 100px;
            background: var(--primary);
            opacity: 0.1;
            border-radius: 0 100% 0 0;
          }
          
          .featured-blog-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
          }
          
          .featured-blog-title {
            display: flex;
            align-items: center;
            gap: 15px;
          }
          
          .featured-blog-icon {
            background: var(--primary);
            color: var(--white);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(46,125,50,0.2);
          }
          
          .featured-blog-title h3 {
            font-size: 1.6rem;
            color: var(--primary);
            margin: 0;
          }
          
          .view-all-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
          }
          
          .view-all-link:hover {
            color: var(--primary);
            transform: translateX(5px);
          }
          
          /* Blog Tag Pills */
          .blog-tag-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 0 0 30px;
            justify-content: center;
          }
          
          .blog-tag-pill {
            background: var(--white);
            color: var(--primary);
            padding: 8px 18px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border: 1px solid rgba(46,125,50,0.2);
          }
          
          .blog-tag-pill:hover, .blog-tag-pill.active {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(46,125,50,0.2);
          }
          
          /* Custom Pagination */
          .custom-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 40px;
          }
          
          .page-number {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--white);
            color: var(--text);
            font-weight: 600;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            text-decoration: none;
            border: 1px solid rgba(0,0,0,0.1);
          }
          
          .page-number:hover, .page-number.active {
            background: var(--primary);
            color: var(--white);
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(46,125,50,0.2);
          }
          
          .page-arrow {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            text-decoration: none;
          }
          
          .page-arrow:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: scale(1.1);
          }
          
          .page-arrow.disabled {
            background: #e0e0e0;
            color: #999;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
          }
          
          @media (max-width: 767.98px) {
            .blog-grid {
              grid-template-columns: 1fr;
            }
            
            .featured-blog {
              padding: 20px;
            }
            
            .featured-blog-title h3 {
              font-size: 1.3rem;
            }
            
            .featured-blog-icon {
              width: 40px;
              height: 40px;
              font-size: 1.2rem;
            }
          }