
   :root {
            --primary: #299704;
            --primary-dark: #1b5e20;
            --primary-light: #4caf50;
            --secondary: #ff9800;
            --dark: #1f2937;
            --light: #f9fafb;
            --gray: #e5e7eb;
            --accent: #1565c0;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            overflow-x: hidden;
            font-family: 'Roboto', sans-serif;
        }

        .new-sec-bulk {
            background: linear-gradient(135deg, #f0f7f0 0%, #e8f5e9 100%);
            color: #333;
            min-height: 100vh;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
            padding: 0 20px;
        }

        .header h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 10px;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .header p {
            font-size: 1.2rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Enhanced Grid container */
        .new-info-grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            grid-auto-rows: auto;
            gap: 1.5rem;
            background-color: transparent;
        }

        /* Card base */
        .new-info-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .new-info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s ease;
        }

        .new-info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .new-info-card:hover::before {
            transform: scaleX(1);
        }

        .new-info-highlight {
            grid-column: 1 / -1;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--light);
        }

        .new-info-highlight .new-info-text h2,
        .new-info-highlight .new-info-text .new-info-sub {
            color: white;
        }

        .new-info-highlight .icon-container {
            background: rgba(255, 255, 255, 0.2);
        }

        .new-info-highlight .icon-container i {
            color: white;
        }

        .new-info-text {
            flex: 0 1 auto;
            z-index: 2;
        }

        .icon-container {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            background: rgba(46, 125, 50, 0.1);
            transition: all 0.3s ease;
        }

        .new-info-card:hover .icon-container {
            transform: scale(1.1);
            background: var(--primary);
        }

        .new-info-card:hover .icon-container i {
            color: white;
        }

        .icon-container i {
            font-size: 32px;
            color: var(--primary);
        }

        .new-info-card h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .new-info-sub {
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            color: #555;
        }

        /* Image container */
        .new-info-visual {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-top: 1rem;
            border-radius: 10px;
            background: rgba(0, 0, 0, 0.02);
            padding: 15px;
            position: relative;
        }

        .new-info-visual::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(46, 125, 50, 0.05) 0%, rgba(27, 94, 32, 0.05) 100%);
            border-radius: 10px;
        }

        .new-info-visual img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 8px;
            z-index: 1;
        }

        .cta-button {
            display: inline-block;
            margin-top: 15px;
            padding: 12px 28px;
            background: var(--primary);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 2px solid var(--primary);
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
        }

        .cta-button:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(46, 125, 50, 0.4);
        }

        .new-info-highlight .cta-button {
            background: var(--secondary);
            border-color: var(--secondary);
            box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
        }

        .new-info-highlight .cta-button:hover {
            background: white;
            color: var(--secondary);
            box-shadow: 0 6px 15px rgba(255, 152, 0, 0.4);
        }

        /* NEW: Visual discount representation */
        .discount-visual {
            display: flex;
            flex-direction: column;
            width: 100%;
            margin-top: 25px;
        }

        .discount-tier {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px 15px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.15);
            transition: all 0.3s ease;
        }

        .discount-tier:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateX(5px);
        }

        .tier-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.2);
            margin-right: 15px;
            flex-shrink: 0;
        }

        .tier-icon i {
            font-size: 1.5rem;
            color: white;
        }

        .tier-content {
            flex: 1;
        }

        .tier-name {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: white;
        }

        .tier-visual {
            display: flex;
            align-items: center;
            width: 100%;
        }

        .tier-boxes {
            display: flex;
            flex: 1;
            margin-right: 15px;
            flex-wrap: wrap;
            gap: 3px;
        }

        .product-box {
            width: 25px;
            height: 25px;
            background: rgba(255, 255, 255, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .discount-tier:hover .product-box {
            transform: translateY(-3px);
            background: var(--secondary);
        }

        .discount-indicator {
            display: flex;
            align-items: center;
        }

        .discount-value {
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--secondary);
            margin-right: 8px;
        }

        .discount-arrow {
            font-size: 1.8rem;
            color: var(--secondary);
        }

        .savings-badge {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-top: 5px;
        }

        .bulk-benefits {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 25px;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }

        .benefit-icon {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .benefit-title {
            font-weight: 600;
            font-size: 0.95rem;
            color: white;
            margin-bottom: 5px;
        }

        .benefit-desc {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Animation for icons */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        .icon-container i {
            animation: float 4s ease-in-out infinite;
        }

        .new-info-card:nth-child(2) .icon-container i {
            animation-delay: 0.2s;
        }

        .new-info-card:nth-child(3) .icon-container i {
            animation-delay: 0.4s;
        }

        .new-info-card:nth-child(4) .icon-container i {
            animation-delay: 0.6s;
        }

        .new-info-card:nth-child(5) .icon-container i {
            animation-delay: 0.8s;
        }

        /* Pattern overlay */
        .new-info-card::after {
            content: '';
            position: absolute;
            bottom: -40px;
            right: -40px;
            width: 100px;
            height: 100px;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232e7d32' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.4;
            z-index: 0;
        }
        
        /* Responsive design */
        @media (min-width: 992px) {
            .new-info-grid-container {
                grid-template-columns: 2fr 1fr 1fr;
                grid-auto-rows: auto;
            }

            .new-info-highlight {
                grid-column: 1 / 2;
                grid-row: span 2;
            }

            .header h1 {
                font-size: 3.5rem;
            }
        }
        
        @media (min-width: 720px) and (max-width: 991px) {
            .new-info-grid-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .new-info-highlight {
                grid-column: 1 / -1;
                grid-row: 1;
            }
        }
        
        @media (max-width: 719px) {
            .new-info-card {
                padding: 1.8rem;
            }

            .header h1 {
                font-size: 2.3rem;
            }
        }
        
        /* Adjustments for small screens */
        @media (max-width: 500px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .header p {
                font-size: 1rem;
            }
            
            .new-info-card h2 {
                font-size: 1.5rem;
            }
            
            .new-info-sub {
                font-size: 1rem;
            }
            
            .icon-container {
                width: 60px;
                height: 60px;
            }
            
            .icon-container i {
                font-size: 26px;
            }
            
            .discount-tier {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .tier-icon {
                margin-bottom: 10px;
                margin-right: 0;
            }
            
            .tier-name {
                margin-top: 5px;
            }
            
            .tier-visual {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .tier-boxes {
                margin-bottom: 10px;
                margin-right: 0;
                width: 100%;
            }
            
            .discount-indicator {
                width: 100%;
                justify-content: flex-start;
            }
            
            .bulk-benefits {
                grid-template-columns: 1fr;
            }
            
            .cta-button {
                width: 100%;
                text-align: center;
                padding: 12px 15px;
            }
        }
        
        @media (max-width: 400px) {
            .new-sec-bulk {
                padding: 15px;
            }
            
            .header h1 {
                font-size: 1.8rem;
            }
            
            .new-info-card {
                padding: 1.5rem;
            }
            
            .product-box {
                width: 20px;
                height: 20px;
            }
        }
        
        /* Mobile menu toggle */
        .mobile-toggle {
            display: none;
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
            background: var(--primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            cursor: pointer;
        }
        
        /* Responsive navigation for future use */
        .nav-container {
            display: none;
        }
