@media (min-width: 1200px) {
    .container {
        max-width: 1400px !important
    }
}
        .web-container {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            max-width: 100%;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            color: #333;
            line-height: 1.6;
			background: #f2f2f2;
        }

        /* Improved Banner Section */
        .web-container .banner {
            height: 80vh;
            min-height: 500px;
            max-height: 800px;
            background-image: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 100%), 
            url('https://images.unsplash.com/photo-1607082348824-0a96f2a4b9da?auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            color: white;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }


        .web-container .banner-content {
            width: 1400px;
            animation: fadeInUp 1s ease-out;
			margin: 0 auto;
    padding: 20px;
        }

        .web-container .banner h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 20px;
            font-weight: 800;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .web-container .banner p {
            font-size: clamp(1rem, 2vw, 1.3rem);
            margin-bottom: 30px;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }

        .web-container .banner-button {
            padding: 15px 40px;
            background-color: #FF5A5F;
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 90, 95, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .web-container .banner-button:hover {
            background-color: #FF3D44;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 90, 95, 0.6);
        }

        /* Section Styling */
        .web-container .section-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
			padding-bottom: 50px;
        }

        .web-container .section-title {
            text-align: center;
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            margin-bottom: 50px;
            color: #2D3748;
            position: relative;
            padding-bottom: 15px;
        }

        .web-container .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #FF5A5F, #FF8A9D);
            border-radius: 2px;
        }

        /* Enhanced Product Cards */
        .web-container .featured-products {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .web-container .product-card {
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
        }

        .web-container .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .web-container .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: #FF5A5F;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 1;
        }

        .web-container .product-image-container {
            position: relative;
            overflow: hidden;
            height: 280px;
			padding: 20px;
        }

        .web-container .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .web-container .product-card:hover .product-image {
            transform: scale(1.05);
        }

        .web-container .product-info {
            padding: 20px;
            position: relative;
        }

        .web-container .product-title {
            font-size: 1.1rem;
            margin-bottom: 12px;
            color: #2D3748;
            font-weight: 600;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .web-container .product-price {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .web-container .current-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: #FF5A5F;
            margin-right: 10px;
        }

        .web-container .original-price {
            font-size: 0.95rem;
            text-decoration: line-through;
            color: #A0AEC0;
        }

        .web-container .discount-percent {
            background-color: #FFEBEE;
            color: #FF5A5F;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: bold;
            margin-left: 10px;
        }

        .web-container .product-rating {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .web-container .stars {
            color: #FFC107;
            margin-right: 8px;
            font-size: 0.9rem;
        }

        .web-container .rating-count {
            font-size: 0.85rem;
            color: #718096;
        }

        .web-container .view-more {
            display: block;
            width: 100%;
            padding: 12px;
            background: linear-gradient(to right, #FF5A5F, #FF8A9D);
            color: white;
            text-align: center;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }

        .web-container .view-more:hover {
            background: linear-gradient(to right, #FF4757, #FF6B81);
            letter-spacing: 1px;
        }

        /* Enhanced Blog Section */
        .web-container .blog-section {
            margin-bottom: 80px;
        }

        .web-container .blog-posts {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
        }

        .web-container .blog-card {
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .web-container .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .web-container .blog-image-container {
            overflow: hidden;
        }

        .web-container .blog-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .web-container .blog-card:hover .blog-image {
            transform: scale(1.05);
        }

        .web-container .blog-content {
            padding: 25px;
        }

        .web-container .blog-date {
            color: #718096;
            font-size: 0.85rem;
            margin-bottom: 10px;
            display: block;
        }

        .web-container .blog-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #2D3748;
            font-weight: 600;
            line-height: 1.2;
			height: 76px;
    overflow: hidden;
        }

        .web-container .blog-excerpt {
            color: #4A5568;
            margin-bottom: 20px;
            line-height: 1.2;
    height: 80px;
    overflow: hidden;
        }

        .web-container .read-more {
            color: #FF5A5F;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .web-container .read-more:hover {
            color: #FF3D44;
            letter-spacing: 0.5px;
        }

        .web-container .read-more i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .web-container .read-more:hover i {
            transform: translateX(3px);
        }

        /* Premium Policies Section */
        .web-container .policies {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            padding: 0;
            border-radius: 12px;
        }

        .web-container .policy {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        }

        .web-container .policy:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }

        .web-container .policy-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #FF5A5F 0%, #FF8A9D 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
        }

        .web-container .policy-title {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #2D3748;
            font-weight: 700;
        }

        .web-container .policy-text {
            color: #4A5568;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 1024px) {
            .web-container .banner {
                height: 70vh;
                min-height: 400px;
                padding: 0 8%;
            }
        }

        @media (max-width: 768px) {
            .web-container .banner {
                height: 60vh;
                min-height: 350px;
                padding: 0 15px;
                background-attachment: scroll;
            }

            .web-container .featured-products,
            .web-container .blog-posts {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }

            .web-container .policies {
                grid-template-columns: 1fr 1fr;
                padding: 40px 15px;
            }
			.web-container .banner-content{width:100%}
        }

        @media (max-width: 480px) {
            .web-container .banner {
                height: 70vh;
                min-height: 300px;
                align-items: center;
                text-align: center;
            }
			.web-container .banner-content{width:100%}

            .web-container .banner-content {
                text-align: center;
                align-items: center;
            }

            .web-container .featured-products,
            .web-container .blog-posts {
                grid-template-columns: 1fr;
            }

            .web-container .policies {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .web-container .product-image-container,
            .web-container .blog-image-container {
            }
        }