        /* Page Specific Styles for Blog */
        .page-header {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://res.cloudinary.com/dc9kw1i5z/image/upload/v1777529386/LVP/img-hero_new.jpg');
            background-size: cover;
            background-position: center;
            min-height: 400px;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 0;
            padding-top: 80px;
            position: relative;
            padding-bottom: 60px;
        }

        .page-header h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            letter-spacing: -1px;
        }

        .page-header p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
            font-weight: 300;
        }

        .blog-container {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 50px;
        }

        @media (max-width: 992px) {
            .blog-container {
                grid-template-columns: 1fr;
            }
        }

        /* Main Content */
        .blog-post-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 40px;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            border: 1px solid #eee;
        }

        .blog-post-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            border-color: rgba(236, 94, 42, 0.2);
        }

        .post-image-wrapper {
            position: relative;
            overflow: hidden;
            height: 350px;
        }

        .post-image {
            height: 100%;
            width: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .blog-post-card:hover .post-image {
            transform: scale(1.05);
        }

        .post-category-tag {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--lime);
            color: white;
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .post-content {
            padding: 35px;
        }

        .post-meta {
            display: flex;
            gap: 20px;
            color: #888;
            font-size: 0.9rem;
            margin-bottom: 15px;
            align-items: center;
        }

        .post-meta i {
            color: var(--lime);
            margin-right: 6px;
        }

        .post-title {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--dark);
            line-height: 1.3;
            font-weight: 700;
        }

        .post-title a {
            color: var(--dark);
            background: linear-gradient(to right, var(--lime), var(--lime));
            background-size: 0% 2px;
            background-repeat: no-repeat;
            background-position: left bottom;
            transition: background-size 0.3s ease;
        }

        .post-title a:hover {
            color: #ec5e2a;
            background-size: 100% 2px;
        }

        .post-excerpt {
            color: #555;
            margin-bottom: 25px;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--lime);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            transition: gap 0.3s ease;
        }

        .read-more:hover {
            gap: 12px;
            color: #d44d1e;
        }

        /* Sidebar Styles */
        .sidebar-widget {
            background: #ffffff;
            padding: 30px;
            border-radius: 16px;
            margin-bottom: 30px;
            border: 1px solid #f0f0f0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
        }

        .widget-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
            color: var(--dark);
        }

        .widget-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--lime);
            border-radius: 3px;
        }

        /* Search Form */
        .search-form {
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 14px 20px;
            padding-right: 50px;
            border: 2px solid #eee;
            border-radius: 50px;
            outline: none;
            transition: all 0.3s;
            font-family: var(--font-main);
            font-size: 0.95rem;
        }

        .search-input:focus {
            border-color: var(--lime);
            background: #fffafa;
        }

        .search-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            border: none;
            background: var(--lime);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-btn:hover {
            background: #d44d1e;
        }

        /* Categories */
        .categories-list li {
            margin-bottom: 0;
        }

        .categories-list a {
            display: flex;
            justify-content: space-between;
            color: #555;
            font-weight: 500;
            padding: 12px 0;
            border-bottom: 1px solid #f5f5f5;
            transition: all 0.3s ease;
        }

        .categories-list li:last-child a {
            border-bottom: none;
        }

        .categories-list a:hover {
            color: var(--lime);
            padding-left: 10px;
            border-bottom-color: rgba(236, 94, 42, 0.2);
        }

        .categories-list span {
            background: #eee;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 0.75rem;
            color: #777;
        }

        /* Recent Posts Widget */
        .recent-post-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            transition: transform 0.2s ease;
        }

        .recent-post-item:hover {
            transform: translateX(5px);
        }

        .recent-post-img {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .recent-post-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .recent-post-info h4 {
            font-size: 1rem;
            line-height: 1.4;
            margin-bottom: 5px;
        }

        .recent-post-info h4 a {
            color: var(--dark);
            transition: color 0.3s;
        }

        .recent-post-info h4 a:hover {
            color: var(--lime);
        }

        .recent-post-info span {
            font-size: 0.8rem;
            color: #999;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Pagination */
        .pagination {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-top: 60px;
        }

        .page-link {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: white;
            border: 2px solid #eee;
            font-weight: 700;
            color: var(--dark);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .page-link.active,
        .page-link:hover {
            background: var(--lime);
            color: white;
            border-color: var(--lime);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(236, 94, 42, 0.3);
        }

        /* Tags */
        .tags-cloud .tag-link {
            display: inline-block;
            background: #f4f4f4;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #666;
            margin: 0 5px 8px 0;
            transition: all 0.3s;
            font-weight: 500;
            text-decoration: none;
        }

        .tags-cloud .tag-link:hover {
            background: var(--lime);
            color: white;
            box-shadow: 0 4px 10px rgba(236, 94, 42, 0.3);
        }
