      /* How We Do It*/
        :root {
            --primary: #FFCC00; /* Vibrant Yellow/Gold */
            --secondary: #0A2814; /* Very Dark Green/Near Black */
            --text-light: #E5E7EB; /* Equivalent to gray-200 */
        }

        /* --- STYLES SPECIFICALLY SCOPED TO THE MANUFACTURING PROCESS SECTION --- */
        
        /* Section Styling */
        .manufacturing-process-section {
            background-color: var(--secondary);
            color: white;
            /* Added margin: 0 and font-family here to localize styling */
            font-family: 'Inter', sans-serif;
            margin: 0; 
        }

        /* Content Wrapper for centering and padding */
        .manufacturing-process-section .content-wrapper {
            max-width: 80rem; /* Equivalent to max-w-7xl */
            margin: 0 auto;
            padding: 4rem 1.5rem; /* py-16 px-6 */
        }

        /* Responsive Padding for large screens */
        @media (min-width: 1024px) {
            .manufacturing-process-section .content-wrapper {
                padding: 6rem 2rem; /* lg:py-24 lg:px-8 */
            }
        }

        /* Main Layout Grid */
        .manufacturing-process-section .main-layout {
            display: grid;
            grid-template-columns: 1fr; /* Stacked on mobile */
            gap: 3rem; /* gap-12 */
            align-items: center;
        }

        /* Responsive Grid for large screens */
        @media (min-width: 1024px) {
            .manufacturing-process-section .main-layout {
                grid-template-columns: repeat(2, minmax(0, 1fr)); /* lg:grid-cols-2 */
                gap: 4rem; /* lg:gap-16 */
            }
        }

        /* Text Content & Heading */
        .manufacturing-process-section .text-content-box h2 {
            font-size: 2.25rem; /* text-4xl */
            font-weight: 800; /* font-extrabold */
            margin-bottom: 2rem; /* mb-8 */
            color: var(--primary);
            line-height: 1.25; /* leading-tight */
        }
        @media (min-width: 1024px) {
            .manufacturing-process-section .text-content-box h2 {
                font-size: 3rem; /* lg:text-5xl */
            }
        }

        /* Process List */
        .manufacturing-process-section .process-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 2rem; /* space-y-8 */
        }

        /* Process Item Card Styling and Hover */
        .manufacturing-process-section .process-item {
            display: flex;
            gap: 1rem; /* gap-4 */
            padding: 1.5rem; /* p-6 */
            border-radius: 0.75rem; /* rounded-xl */
            background-color: rgba(10, 40, 20, 0.7); /* bg-secondary/70 */
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* duration-500 transform */
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* initial shadow */
            cursor: pointer;
        }

        .manufacturing-process-section .process-item:hover {
            transform: scale(1.02); /* hover:scale-[1.02] */
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); /* hover:shadow-2xl */
        }
        
        /* Icon Wrapper */
        .manufacturing-process-section .icon-wrapper {
            flex-shrink: 0;
            width: 2.5rem; /* w-10 */
            height: 2.5rem; /* h-10 */
            background-color: var(--primary);
            border-radius: 9999px; /* rounded-full */
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); /* shadow-md */
        }
        .manufacturing-process-section .item-icon {
            width: 1.5rem; /* w-6 */
            height: 1.5rem; /* h-6 */
            color: var(--secondary);
        }

        .manufacturing-process-section .item-text {
            font-size: 1.125rem; /* text-lg */
            color: var(--text-light);
            text-align: justify; 
        }

        /* Video Wrapper (Ensures 16:9 aspect ratio) */
        .manufacturing-process-section .video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-radius: 0.75rem; /* rounded-xl */
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); /* shadow-2xl */
            outline: 4px solid var(--primary); /* ring-4 ring-primary */
            outline-offset: 0;
        }
        
        .manufacturing-process-section .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }