
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            color: #333;
            background-color: #f8f9fa;
        }
        
        .view-blog-title{
            color:#fff;
        }
        
        .card-body {
            padding: 0px;
        }
        
        .card{
            padding-top:20px;
            padding-bottom:20px;
        }

        .meta{
            color:#f6f6f6;
            font-size:14px;
            text-transform:none;
        }
        
        .product-item .product-image {
            width: 200px;
            height: 200px;
        }

        .blog-container {
            max-width: 100%;
            margin: 0 auto;
            background: white;
            /*box-shadow: 0 0 20px rgba(0,0,0,0.1);*/
        }

        .blog-header {
            background: linear-gradient(135deg, #24337A 0%, #EA1C2D 100%);
            /*background-color: #24337A;*/
            color: white;
            padding: 2rem;
            text-align: center;
        }
        
        figure img {
            height: 226px !important;
            max-width: 500px !important;
            width: auto !important;
        }

        .blog-header h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            font-weight: 300;
        }

        .blog-header .meta {
            font-size: 1rem;
            opacity: 0.9;
        }


        .intro {
            font-size: 17px;
            margin-bottom: 2rem;
            color: #555;
            line-height: 1.7;
        }


        .product-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: #f8f9fa;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .product-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .product-content {
            flex: 1;
            padding: 0 1.5rem;
        }

        .product-title {
            font-weight: bold;
            font-size: 1.2rem;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }

        .product-description {
            color: #555;
            line-height: 1.6;
        }

        .product-images {
            display: flex;
            gap: 1rem;
            flex-shrink: 0;
        }

        .product-image {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .product-image:hover {
            transform: scale(1.05);
        }

        .single-image {
            width: 200px;
            height: 200px;
        }

        .cta {
            background: #24337A;
            color: white;
            padding: 2rem;
            text-align: center;
            margin-top: 2rem;
        }

        .cta p {
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .cta a {
            color: #fff;
            text-decoration: underline;
            font-weight: bold;
        }

        .cta a:hover {
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            
            h3 {
                color: #2c3e50;
                font-size: 1.2rem;
                margin: 2rem 0 1rem 0;
                border-bottom: 2px solid #667eea;
                padding-bottom: 0.5rem;
            }
                
            .product-title {
                font-weight: bold;
                font-size: 1rem;
                color: #2c3e50;
                margin-bottom: 0.5rem;
            }
            
            .product-item {
                display: flex;
                align-items: flex-start;
                margin-bottom: 2rem;
                padding: 0.7rem;
                background: #f8f9fa;
                border-radius: 8px;
                box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            }

            .intro {
                font-size: 15px;
                margin-bottom: 2rem;
                color: #555;
                line-height: 1.7;
            }
        
            .blog-container {
                margin: 0.7rem;
            }
            
            .blog-header h1 {
                font-size: 2rem;
            }
            
            .blog-content {
                padding: 0rem;
            }
            
            .product-item {
                flex-direction: column !important;
            }
            
            .product-item:nth-child(even) {
                flex-direction: column !important;
            }
            
            .product-content {
                padding: 1rem 0 0 0;
            }
            
            .product-images {
                justify-content: center;
                margin-bottom: 1rem;
            }
            
            .product-image {
                width: 120px;
                height: 120px;
            }
        }