body::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/static/index/picture/Inside the food yard.jpeg') center/cover no-repeat;
            opacity: 0.15;
            z-index: -1;
        }
        
        .container {
            max-width: 1230px;
            margin: 0 auto;
            /*padding: 20px;*/
        }
        
        /* Header Section */
        .header {
            text-align: center;
            margin-bottom: 40px;
            padding: 50px 20px;
            border-radius: 15px;
            background: linear-gradient(135deg, rgba(12, 36, 97, 0.85), rgba(30, 55, 153, 0.85));
            color: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(5px);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(74, 144, 226, 0.3);
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .header h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            font-weight: 800;
            letter-spacing: 1px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .header p {
            font-size: 1.3rem;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.8;
            opacity: 0.9;
            font-weight: 300;
        }
        
        /* Section Title */
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #054497;
            margin: 0px 0 40px;
            font-weight: 700;
            position: relative;
            letter-spacing: 1px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: linear-gradient(90deg, #4A90E2, #64ffda);
            border-radius: 4px;
        }
        
        /* Process Flow - Flexible Grid */
        .process-flow {
            display: grid;
            /* This is the key change: auto-fit creates a responsive grid that adjusts columns based on container width */
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }
        
        .process-step {
            background: rgb(2 59 132);
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            padding: 25px 20px;
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
            border: 1px solid rgba(74, 144, 226, 0.3);
            z-index: 2;
            overflow: hidden;
            backdrop-filter: blur(5px);
            display: flex;
            flex-direction: column;
        }
        
        .process-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #4A90E2, #1E90FF);
        }
        
        .process-step:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            background: rgba(23, 42, 69, 0.9);
        }
        
        .process-step.cold::before { background: linear-gradient(90deg, #1E90FF, #00BFFF); }
        .process-step.freezing::before { background: linear-gradient(90deg, #00BFFF, #00CED1); }
        .process-step.deep-freeze::before { background: linear-gradient(90deg, #00CED1, #64ffda); }
        
        .step-number {
            position: absolute;
            top: 5px;
            right: 20px;
            background: linear-gradient(135deg, #0c2461, #1E90FF);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
            box-shadow: 0 6px 10px rgba(0,0,0,0.3);
            z-index: 3;
        }
        
        .step-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin: 15px 0 10px;
            color: #64ffda;
            position: relative;
            padding-bottom: 10px;
        }
        
        .step-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #4A90E2, #1E90FF);
            border-radius: 3px;
        }
        
        .step-temp {
            font-size: 1.6rem;
            font-weight: 800;
            margin: 15px 0;
            color: #efa43d;
            text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
        }
        
        .step-desc {
            font-size: 0.95rem;
            color: #f2f5ff;
            line-height: 1.5;
            margin-top: 10px;
            flex-grow: 1; /* Allows description to fill space, aligning footers */
        }
        
        /* Temperature Scale - REVISED */
        .temperature-scale {
            max-width: 1200px;
            margin: 50px auto 70px;
            background: rgba(17, 34, 64, 0.7);
            border-radius: 15px;
            padding: 35px 35px 45px 35px; /* Increased bottom padding */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            border: 1px solid rgba(74, 144, 226, 0.3);
            backdrop-filter: blur(5px);
        }
        
        .scale-container {
            height: 50px;
            background: linear-gradient(to right, #e74c3c, #f39c12, #3498db, #2ecc71, #1abc9c, #9b59b6);
            background: linear-gradient(to right, #FF6B6B, #4A90E2, #1E90FF, #00BFFF, #00CED1);
            border-radius: 25px;
            position: relative;
            margin: 30px 0;
            box-shadow: inset 0 0 15px rgba(0,0,0,0.3), 0 5px 20px rgba(0,0,0,0.2);
        }
        
        .scale-marker {
            position: absolute;
            top: -35px;
            transform: translateX(-50%);
            font-weight: 700;
            color: #64ffda;
            text-align: center;
            width: 100px;
            font-size: 1.1rem;
        }

        /* New container for labels */
        .scale-labels-wrapper {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 15px;
            gap: 15px;
        }
        
        /* Revised label styles */
        .scale-label {
            font-size: 1rem;
            color: #e6f1ff;
            font-weight: 600;
            white-space: nowrap;
            background: rgba(12, 36, 97, 0.7);
            padding: 8px 15px;
            border-radius: 20px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            border: 1px solid rgba(74, 144, 226, 0.3);
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
            text-align: center;
            flex-grow: 1; /* Allows labels to grow and fill space */
        }
        
        /* What We Do Section */
        .what-we-do {
            background: rgba(17, 34, 64, 0.7);
            border-radius: 15px;
            padding: 50px 30px;
            margin-bottom: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(74, 144, 226, 0.3);
            backdrop-filter: blur(5px);
        }
        
        /* Products Grid - Flexible */
        .products-grid {
            display: grid;
            /* Applied the same responsive grid technique */
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .product-card {
            background: rgba(23, 42, 69, 0.7);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            border: 1px solid rgba(74, 144, 226, 0.3);
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
            background: rgba(23, 42, 69, 0.9);
            border-color: rgba(100, 255, 218, 0.5);
        }
        
        .product-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .product-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 60%, rgba(10, 25, 47, 0.8));
            z-index: 1;
        }
        
        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-img img {
            transform: scale(1.05);
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-title {
            font-size: 1.25rem;
            color: #64ffda;
            margin-bottom: 12px;
            font-weight: 700;
        }
        
        .product-desc {
            color: #a8b2d1;
            margin-bottom: 5px;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 30px;
        }
        
        .page-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(12, 36, 97, 0.7);
            color: #e6f1ff;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            font-size: 1rem;
            border: 1px solid rgba(74, 144, 226, 0.3);
        }
        
        .page-btn:hover, .page-btn.active {
            background: linear-gradient(45deg, #4A90E2, #64ffda);
            transform: translateY(-3px);
            color: #0a192f;
        }
        
        .page-btn.arrow::before {
            content: '';
            display: block;
            width: 10px;
            height: 10px;
            border-style: solid;
            border-color: #e6f1ff;
        }
        
        .prev-btn::before {
            border-width: 0 0 2px 2px;
            transform: rotate(45deg);
        }
        
        .next-btn::before {
            border-width: 2px 2px 0 0;
            transform: rotate(45deg);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .header h1 { font-size: 2.5rem; }
            .step-title { font-size: 1.2rem; }
        }
        
        @media (max-width: 768px) {
            .header h1 { font-size: 2rem; }
            .section-title { font-size: 2rem; }
            /* Center labels on smaller screens */
            .scale-labels-wrapper {
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .header h1 { font-size: 1.8rem; }
            .header p { font-size: 1.1rem; }
            .section-title { font-size: 1.7rem; }
        }
        (max-width: 480px){
            .process-flow {
        grid-template-columns: 1fr;
    }
        }