
        /* ========== ENHANCED GLOBAL STYLES ========== */
        :root {
            --primary-green: #1B5E20;
            --secondary-green: #1B5E20;
            --dark-green: #1B5E20;
            --light-green: #1B5E20;
            --white: #ffffff;
            --light-gray: #f5f5f5;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        
        /* ========== ENHANCED HERO SECTION ========== */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: transparent;
            padding: 0;
        }
        
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .hero-background video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
            z-index: -1;
            will-change: transform;
            backface-visibility: hidden;
        }
        
        /* Dark overlay for better text visibility */
        .hero-background::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }
        
        .hero:hover .hero-background {
            transform: scale(1.02);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0;
            padding: 0 30px;
            color: var(--white);
        }
        
        .hero h1 {
            font-size: 55px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-top: 0;
            margin-bottom: 30px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero p {
            font-size: 20px;
            max-width: 700px;
            line-height: 1.8;
            margin-bottom: 40px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out 0.2s both;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.4s both;
        }
        
        .hero .btn {
            background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
            color: var(--primary-green) !important;
            padding: 16px 40px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            border: 3px solid transparent;
            position: relative;
            z-index: 1;
        }
        
        .hero .btn::before {
            background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
            z-index: -1;
        }
        
        .hero .btn:hover {
            background: linear-gradient(135deg, var(--secondary-green), var(--primary-green)) !important;
            color: var(--white) !important;
            border-color: var(--white);
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
        }
        
        /* ========== ENHANCED CONTENT BLOCKS ========== */
        .content-blocks {
            padding: 0;
            background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
        }
        
        .blocks-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 30px;
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 25px;
        }
        
        .block-item {
            position: relative;
            display: block;
            height: 100%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            animation: zoomIn 0.8s ease forwards;
        }
        
        .block-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
        }
        
        .block-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .block-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .block-item:hover .block-image img {
            transform: scale(1.15) rotate(2deg);
        }
        
        .block-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(27, 94, 32, 0.7);
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .block-item:hover .block-overlay {
            opacity: 1;
        }
        
        .block-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
            z-index: 2;
        }
        
        .block-category {
            color: var(--white);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
            margin-bottom: 10px;
            opacity: 1;
            position: relative;
            z-index: 3;
            transition: var(--transition);
            padding-bottom: 5px;
            border-bottom: 2px solid var(--secondary-green);
            display: inline-block;
        }
        
        .block-item:hover .block-category {
            color: var(--white);
            border-bottom-color: var(--light-green);
        }
        
        .block-title {
            color: var(--white);
            font-size: 22px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
            position: relative;
            z-index: 3;
        }
        
        .block-item:hover .block-title {
            transform: translateX(10px);
        }
        
        .block-line {
            display: block;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-green), transparent);
            border-radius: 2px;
            transition: width 0.4s ease, background 0.4s ease;
            position: relative;
            z-index: 3;
        }
        
        .block-item:hover .block-line {
            background: linear-gradient(90deg, var(--white), transparent);
        }
        
        .block-item:hover .block-line {
            width: 120px;
        }
        
        /* Grid Layout Classes */
        .col-6 {
            grid-column: span 6;
        }
        
        .col-4 {
            grid-column: span 4;
        }
        
        .col-3 {
            grid-column: span 3;
        }
        
        .col-2 {
            grid-column: span 2;
        }
        
        /* ========== INDUSTRIAL SOLUTIONS SECTION ========== */
        .industrial-solutions-section {
            padding: 80px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
        }
        
        .industrial-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .industrial-images {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            position: relative;
        }
        
        .main-image {
            grid-column: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border: 4px solid var(--secondary-green);
            position: relative;
        }
        
        .main-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .main-image:hover img {
            transform: scale(1.05);
        }
        
        .sub-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .sub-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            border: 3px solid var(--secondary-green);
            position: relative;
        }
        
        .sub-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .sub-image:hover img {
            transform: scale(1.08);
        }
        
        .industrial-content {
            padding: 20px;
        }
        
        .industrial-content h2 {
            font-size: 42px;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 30px;
            line-height: 1.2;
            position: relative;
            padding-bottom: 20px;
        }
        
        .industrial-content h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-green), var(--light-green));
            border-radius: 2px;
        }
        
        .industrial-content p {
            font-size: 18px;
            line-height: 1.8;
            color: #555;
            text-align: justify;
        }
        
        /* Responsive Design for Industrial Solutions */
        @media (max-width: 1024px) {
            .industrial-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .industrial-content h2 {
                font-size: 36px;
            }
            
            .industrial-content p {
                font-size: 16px;
            }
        }
        
        @media (max-width: 768px) {
            .industrial-solutions-section {
                padding: 60px 0;
            }
            
            .industrial-container {
                padding: 0 20px;
                gap: 30px;
            }
            
            .industrial-content h2 {
                font-size: 32px;
                margin-bottom: 20px;
            }
            
            .industrial-content p {
                font-size: 15px;
                line-height: 1.7;
            }
            
            .sub-images {
                gap: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .industrial-content h2 {
                font-size: 28px;
            }
            
            .industrial-content p {
                font-size: 14px;
            }
        }
        
        /* ========== GLOBAL PARTNER SECTION ========== */
        .global-partner-section {
            padding: 80px 0;
            background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
            position: relative;
        }

        .global-partner-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: var(--secondary-green);
            opacity: 0.03;
            clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
        }

        .global-partner-container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
            z-index: 2;
        }

        .global-partner-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }

        .global-partner-text {
            padding-right: 20px;
        }

        .global-partner-header {
            width: 100%;
        }

        .global-partner-header h2 {
            font-size: 48px;
            font-weight: 700;
            color: #333;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .global-partner-header h2 span {
            color: var(--secondary-green);
        }

        .global-partner-intro {
            font-size: 18px;
            line-height: 1.7;
            color: #444;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .global-partner-description {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
        }

        .global-partner-images-wrapper {
            position: relative;
            padding: 20px;
        }

        .diagonal-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .diagonal-line {
            position: absolute;
            width: 2px;
            height: 150%;
            background: linear-gradient(180deg, transparent 0%, var(--secondary-green) 30%, var(--secondary-green) 70%, transparent 100%);
            transform: rotate(-45deg);
            opacity: 0.15;
        }

        .diagonal-line:nth-child(1) {
            left: 10%;
            top: -25%;
        }

        .diagonal-line:nth-child(2) {
            left: 35%;
            top: -25%;
        }

        .diagonal-line:nth-child(3) {
            left: 60%;
            top: -25%;
        }

        .diagonal-line:nth-child(4) {
            left: 85%;
            top: -25%;
        }

        .global-partner-image-gallery {
            width: 100%;
            height: 600px;
            position: relative;
            z-index: 2;
        }

        .gallery-image {
            position: absolute;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
            opacity: 0.92;
        }

        .gallery-image:hover {
            transform: scale(1.05) !important;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
            opacity: 1;
            z-index: 10 !important;
        }

        .gallery-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Random positioned overlapping layout */
        .gallery-image[data-position="1"] {
            width: 280px;
            height: 200px;
            top: 15%;
            left: 8%;
            transform: rotate(-3deg);
            z-index: 3;
        }

        .gallery-image[data-position="2"] {
            width: 320px;
            height: 220px;
            top: 5%;
            right: 12%;
            transform: rotate(5deg);
            z-index: 5;
        }

        .gallery-image[data-position="3"] {
            width: 300px;
            height: 210px;
            bottom: 25%;
            left: 18%;
            transform: rotate(2deg);
            z-index: 4;
        }

        .gallery-image[data-position="4"] {
            width: 290px;
            height: 205px;
            top: 45%;
            left: 35%;
            transform: rotate(-4deg);
            z-index: 6;
        }

        .gallery-image[data-position="5"] {
            width: 310px;
            height: 215px;
            bottom: 12%;
            right: 8%;
            transform: rotate(3deg);
            z-index: 2;
        }

        .gallery-image[data-position="6"] {
            width: 295px;
            height: 200px;
            top: 35%;
            right: 25%;
            transform: rotate(-2deg);
            z-index: 7;
        }

        .global-partner-image {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto 60px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            display: none;
        }

        .global-partner-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .global-partner-image:hover img {
            transform: scale(1.05);
        }

        .why-contractors-section {
            margin-top: 60px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .why-contractors-section h3 {
            font-size: 42px;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 50px;
            line-height: 1.3;
            text-align: center;
        }

        .why-contractors-section h3 span {
            color: var(--secondary-green);
        }

        .contractors-reasons {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .reason-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            padding: 25px;
            background: #fff;
            border-radius: 10px;
            border-left: 4px solid var(--secondary-green);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .reason-item:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
            border-left-color: var(--light-green);
        }

        .reason-number {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: transparent;
            border: 3px solid var(--primary-green);
            color: var(--primary-green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            padding: 10px;
        }

        .reason-number img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: brightness(0) saturate(100%) invert(23%) sepia(88%) saturate(1294%) hue-rotate(99deg) brightness(95%) contrast(96%);
        }

        .reason-content h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 8px;
        }

        .reason-content p {
            font-size: 15px;
            line-height: 1.7;
            color: #666;
        }

        /* Contractors Diagram */
        .contractors-diagram {
            position: relative;
            width: 100%;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .diagram-center {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            text-align: center;
            line-height: 1.4;
            position: relative;
            z-index: 3;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .diagram-text {
            padding: 20px;
        }

        .diagram-lines {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .diagram-line {
            position: absolute;
            width: 2px;
            height: 120px;
            background: linear-gradient(180deg, var(--secondary-green), transparent);
            transform-origin: bottom center;
        }

        .diagram-line.line-1 {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -100%) rotate(-90deg);
        }

        .diagram-line.line-2 {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -100%) rotate(-35deg);
        }

        .diagram-line.line-3 {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -100%) rotate(18deg);
        }

        .diagram-line.line-4 {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -100%) rotate(70deg);
        }

        .diagram-line.line-5 {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -100%) rotate(125deg);
        }

        .diagram-nodes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .diagram-node {
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #fff;
            border: 4px solid var(--secondary-green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-green);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            z-index: 2;
        }

        .diagram-node:hover {
            transform: scale(1.15);
            border-color: var(--light-green);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .diagram-node.node-1 {
            top: 50%;
            right: 10%;
            transform: translateY(-50%);
        }

        .diagram-node.node-2 {
            top: 20%;
            right: 25%;
        }

        .diagram-node.node-3 {
            top: 10%;
            left: 50%;
            transform: translateX(-50%);
        }

        .diagram-node.node-4 {
            top: 20%;
            left: 25%;
        }

        .diagram-node.node-5 {
            top: 50%;
            left: 10%;
            transform: translateY(-50%);
        }

        /* Responsive Design for Global Partner */
        @media (max-width: 1024px) {
            .global-partner-content-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
                margin-bottom: 60px;
            }

            .global-partner-text {
                padding-right: 0;
            }

            .global-partner-header h2 {
                font-size: 40px;
            }

            .global-partner-image-gallery {
                height: 450px;
            }

            .gallery-image[data-position="1"] {
                width: 220px;
                height: 160px;
                top: 10%;
                left: 5%;
            }

            .gallery-image[data-position="2"] {
                width: 250px;
                height: 175px;
                top: 8%;
                right: 8%;
            }

            .gallery-image[data-position="3"] {
                width: 230px;
                height: 165px;
                bottom: 30%;
                left: 15%;
            }

            .gallery-image[data-position="4"] {
                width: 225px;
                height: 160px;
                top: 48%;
                left: 32%;
            }

            .gallery-image[data-position="5"] {
                width: 240px;
                height: 170px;
                bottom: 15%;
                right: 5%;
            }

            .gallery-image[data-position="6"] {
                width: 235px;
                height: 165px;
                top: 38%;
                right: 22%;
            }

            .why-contractors-section h3 {
                font-size: 36px;
            }

            .contractors-reasons {
                gap: 25px;
            }

            .contractors-diagram {
                height: 400px;
            }

            .diagram-center {
                width: 150px;
                height: 150px;
                font-size: 14px;
            }

            .diagram-node {
                width: 50px;
                height: 50px;
                font-size: 16px;
            }
        }

        @media (max-width: 768px) {
            .global-partner-section {
                padding: 60px 0;
            }

            .global-partner-container {
                padding: 0 20px;
            }

            .global-partner-header h2 {
                font-size: 32px;
            }

            .global-partner-intro {
                font-size: 16px;
            }

            .global-partner-description {
                font-size: 15px;
            }

            .global-partner-content-wrapper {
                margin-bottom: 50px;
            }

            .global-partner-image-gallery {
                height: 550px;
            }

            .gallery-image[data-position="1"] {
                width: 180px;
                height: 135px;
                top: 5%;
                left: 8%;
            }

            .gallery-image[data-position="2"] {
                width: 190px;
                height: 140px;
                top: 2%;
                right: 5%;
            }

            .gallery-image[data-position="3"] {
                width: 175px;
                height: 130px;
                top: 32%;
                left: 5%;
            }

            .gallery-image[data-position="4"] {
                width: 185px;
                height: 138px;
                top: 28%;
                right: 8%;
            }

            .gallery-image[data-position="5"] {
                width: 195px;
                height: 145px;
                bottom: 15%;
                left: 10%;
            }

            .gallery-image[data-position="6"] {
                width: 180px;
                height: 135px;
                bottom: 18%;
                right: 5%;
            }

            .why-contractors-section h3 {
                font-size: 28px;
                margin-bottom: 30px;
            }

            .contractors-reasons {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .reason-item {
                padding: 20px;
                flex-direction: column;
                gap: 15px;
            }

            .reason-number {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .reason-content h4 {
                font-size: 16px;
            }

            .reason-content p {
                font-size: 14px;
            }

            .contractors-diagram {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .global-partner-header h2 {
                font-size: 28px;
            }

            .why-contractors-section h3 {
                font-size: 24px;
            }

            .reason-item {
                padding: 15px;
            }
        }

        @media (max-width: 480px) {
            .global-partner-image-gallery {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        }
        
        /* ========== PRODUCT DETAIL SECTION ========== */
        .product-detail-section {
            padding: 0;
            background: var(--white);
        }
        
        .product-detail-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 40px;
            background: rgba(27, 94, 32, 0.08);
            border-radius: 25px;
            box-shadow: 0 15px 50px rgba(27, 94, 32, 0.35);
        }
        
        .product-detail-item {
            display: block;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
            padding: 40px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .product-detail-item.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .product-detail-item:last-child {
            margin-bottom: 0;
        }
        
        /* Flip layout for alternating items */
        .product-detail-item.flip {
            direction: ltr;
        }
        
        .product-detail-item.flip > * {
            direction: ltr;
        }
        
        .product-image-container {
            display: none;
        }
        
        .product-image-wrapper {
            display: none;
        }
        
        .product-image-wrapper:hover {
            display: none;
        }
        
        .product-image-wrapper img {
            display: none;
        }
        
        .product-info {
            padding: 0;
            position: relative;
        }
        
        .product-badge {
            display: none;
        }
        
        .product-title {
            display: none;
        }
        
        .product-subtitle {
            font-size: 42px;
            font-weight: 900;
            color: var(--primary-green);
            margin-bottom: 30px;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
            padding-bottom: 20px;
            border-bottom: 4px solid var(--primary-green);
            display: inline-block;
            width: 100%;
        }
        
        .product-content-row {
            display: flex;
            gap: 30px;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .product-inline-image {
            flex-shrink: 0;
            width: 250px;
            height: 250px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .product-inline-image:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        }
        
        .product-inline-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .product-description {
            flex: 1;
            font-size: 16px;
            color: #444;
            line-height: 1.9;
            text-align: justify;
            position: relative;
            padding-left: 20px;
        }
        
        .product-description::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--secondary-green), var(--primary-green));
            border-radius: 2px;
        }
        
        .product-specs {
            display: none;
        }
        
        .specs-title {
            display: none;
        }
        
        .specs-title::before {
            display: none;
        }
        
        /* Technical Specifications Table - Inline Expandable */
        .technical-table-container {
            margin-top: 20px;
            margin-bottom: 30px;
            overflow: visible;
            border-radius: 8px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            max-height: none;
            position: relative;
            width: 100%;
        }
        
        @keyframes arrowBounce {
            0%, 100% {
                transform: translateX(-50%) translateY(0) rotate(0deg) scaleX(1.8);
            }
            50% {
                transform: translateX(-50%) translateY(5px) rotate(0deg) scaleX(1.8);
            }
        }
        
        .technical-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--white);
            table-layout: fixed;
        }
        
        .technical-table thead {
            background: linear-gradient(135deg, #1B5E20, #1B5E20);
        }
        
        .technical-table thead th {
            color: var(--white);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 13px;
            padding: 15px 12px;
            text-align: center;
            letter-spacing: 0.5px;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .technical-table thead th:nth-child(1) {
            width: 8%;
        }
        
        .technical-table thead th:nth-child(2) {
            width: 20%;
        }
        
        .technical-table thead th:nth-child(3) {
            width: 15%;
        }
        
        .technical-table thead th:nth-child(4) {
            width: 15%;
        }
        
        .technical-table thead th:nth-child(5) {
            width: 17%;
        }
        
        .technical-table thead th:nth-child(6) {
            width: 25%;
        }
        
        .technical-table thead th:last-child {
            border-right: none;
        }
        
        .technical-table tbody tr {
            border-bottom: 1px solid #e0e0e0;
            transition: all 0.3s ease;
            cursor: pointer;
            height: 45px !important;
            max-height: 45px !important;
            line-height: 1.2;
        }
        
        .technical-table tbody tr:hover {
            background: rgba(45, 159, 60, 0.15);
            transform: translateX(5px);
            box-shadow: 0 2px 8px rgba(27, 94, 32, 0.2);
        }
        
        .technical-table tbody tr:last-child {
            border-bottom: none;
        }
        
        .technical-table tbody td {
            padding: 10px 12px !important;
            font-size: 13px;
            color: #333;
            border-right: 1px solid #f0f0f0;
            height: 45px !important;
            max-height: 45px !important;
            vertical-align: middle;
            text-align: center;
            line-height: 1.2;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .technical-table tbody td:last-child {
            border-right: none;
        }
        
        .technical-table tbody td:first-child {
            font-weight: 600;
            color: var(--primary-green);
        }
        
        .technical-table tbody tr::after {
            content: '→';
            position: absolute;
            right: 15px;
            opacity: 0;
            transition: all 0.3s ease;
            color: var(--primary-green);
            font-weight: bold;
            font-size: 18px;
        }
        
        .technical-table tbody tr {
            position: relative;
        }
        
        .technical-table tbody tr:hover::after {
            opacity: 1;
            right: 10px;
        }

        /* Restored row highlight */
        .row-restore-highlight {
            background: rgba(45, 159, 60, 0.12) !important;
            position: relative;
            animation: restorePulse 1.6s ease-in-out 2;
        }
        @keyframes restorePulse {
            0% { background: rgba(45, 159, 60, 0.18); }
            50% { background: rgba(45, 159, 60, 0.10); }
            100% { background: rgba(45, 159, 60, 0.00); }
        }
        
        .specs-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        
        .spec-item {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        
        .spec-label {
            font-size: 12px;
            font-weight: 600;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .spec-value {
            font-size: 15px;
            font-weight: 600;
            color: #333;
        }
        
        .technical-data {
            margin-bottom: 12px;
        }
        
        .data-row {
            display: flex;
            justify-content: space-between;
            padding: 5px 0;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .data-row:last-child {
            border-bottom: none;
        }
        
        .data-label {
            font-size: 13px;
            font-weight: 600;
            color: #666;
        }
        
        .data-value {
            font-size: 13px;
            font-weight: 700;
            color: var(--primary-green);
        }
        
        .product-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        
        .product-btn {
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .product-btn.primary {
            background: linear-gradient(135deg, #52B455 0%, #2D9F3C 100%);
            color: white;
            box-shadow: 0 2px 8px rgba(82, 180, 85, 0.3);
        }
        
        .product-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(82, 180, 85, 0.4);
        }
        
        .product-btn.secondary {
            background: transparent;
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
        }
        
        .product-btn.secondary:hover {
            background: var(--primary-green);
            color: var(--white);
        }
        
        /* Responsive */
        @media (max-width: 968px) {
            .product-detail-item {
                display: block;
            }
            
            .product-detail-item.flip {
                direction: ltr;
            }
            
            .specs-grid {
                grid-template-columns: 1fr;
            }
            
            .product-content-row {
                flex-direction: column;
            }
            
            .product-inline-image {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }
        }
        
        /* ========== FEATURES SECTION ========== */
        .features-section {
            padding: 100px 0;
            background: var(--white);
        }
        
        .features-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 48px;
            font-weight: 900;
            color: var(--primary-green);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .section-subtitle {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .feature-card {
            background: var(--light-gray);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-green), var(--primary-green));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover::before {
            transform: scaleX(1);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: var(--transition);
        }
        
        .feature-card:hover .feature-icon {
            transform: rotate(360deg) scale(1.1);
        }
        
        .feature-icon svg {
            fill: var(--white);
        }
        
        .feature-card h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 15px;
        }
        
        .feature-card p {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }
        
        /* ========== STATS SECTION ========== */
        .stats-section {
            padding: 0;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="stats-grid" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23stats-grid)" /></svg>');
        }
        
        .stats-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
            z-index: 1;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
        }
        
        .stat-item {
            text-align: center;
            color: var(--white);
        }
        
        .stat-number {
            font-size: 56px;
            font-weight: 900;
            margin-bottom: 10px;
            display: block;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }
        
        .stat-label {
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.9;
        }
        
        /* ========== CTA SECTION ========== */
        .cta-section {
            padding: 100px 0;
            background: var(--light-gray);
        }
        
        .cta-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }
        
        .cta-content {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            border-radius: 25px;
            padding: 80px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }
        
        .cta-content::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .cta-content h2 {
            font-size: 42px;
            font-weight: 900;
            color: var(--white);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            z-index: 1;
        }
        
        .cta-content p {
            font-size: 18px;
            color: var(--white);
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        
        .cta-btn {
            background: var(--white);
            color: var(--primary-green) !important;
            padding: 18px 45px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 15px;
            transition: var(--transition);
            border: 3px solid var(--white);
            display: inline-block;
        }
        
        .cta-btn:hover {
            background: transparent;
            color: var(--white) !important;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .cta-btn.secondary {
            background: transparent;
            color: var(--white) !important;
            border-color: var(--white);
        }
        
        .cta-btn.secondary:hover {
            background: var(--white);
            color: var(--primary-green) !important;
        }
        
        /* ========== TESTIMONIALS SECTION ========== */
        .testimonials-section {
            padding: 100px 0;
            background: var(--white);
        }
        
        .testimonials-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        
        .testimonial-card {
            background: var(--light-gray);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            transition: var(--transition);
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 80px;
            color: var(--secondary-green);
            opacity: 0.2;
            font-family: 'Roboto', sans-serif;
            line-height: 1;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .testimonial-text {
            font-size: 16px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 24px;
        }
        
        .author-info h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 5px;
        }
        
        .author-info p {
            font-size: 14px;
            color: #666;
        }
        
        /* ========== ENHANCED FOOTER ========== */
        footer {
            background: #f8f9fa;
            color: #333;
            padding: 60px 0 30px;
            position: relative;
            overflow: hidden;
            border-top: 1px solid #e0e0e0;
        }
        
        .footer-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
            z-index: 1;
        }
        
        .footer-top {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 50px;
            margin-bottom: 50px;
        }
        
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-col ul li {
            margin-bottom: 15px;
        }
        
        .footer-col ul li a {
            color: #666;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: var(--transition);
            display: inline-block;
            position: relative;
        }
        
        .footer-col ul li a::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-green);
            transition: width 0.3s ease;
        }
        
        .footer-col ul li a:hover {
            color: var(--primary-green);
            transform: translateX(10px);
        }
        
        .footer-col ul li a:hover::before {
            width: 100%;
        }
        
        .footer-heading {
            color: var(--primary-green);
            font-size: 18px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
        }
        
        /* Social Icons */
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #e0e0e0;
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .social-icons a::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--primary-green);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.4s ease, height 0.4s ease;
        }
        
        .social-icons a:hover::before {
            width: 100%;
            height: 100%;
        }
        
        .social-icons a:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        
        .social-icons a svg {
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }
        
        .social-icons a svg path {
            fill: #333;
            transition: fill 0.3s ease;
        }
        
        .social-icons a:hover svg path {
            fill: #fff;
        }
        
        .social-icons a:hover svg {
            transform: rotate(360deg);
        }
        
        /* Back to Top Button */
        .back-to-top {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #333;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 25px;
            border: 2px solid #d0d0d0;
            border-radius: 25px;
            transition: var(--transition);
            background: var(--white);
        }
        
        .back-to-top:hover {
            background: var(--primary-green);
            border-color: var(--primary-green);
            color: var(--white);
            transform: translateY(-5px);
        }
        
        .back-to-top svg path {
            transition: fill 0.3s ease;
        }
        
        .back-to-top:hover svg path {
            fill: var(--white);
        }
        
        .back-to-top svg {
            transition: transform 0.3s ease;
        }
        
        .back-to-top:hover svg {
            transform: translateY(-5px);
            animation: bounce 0.6s ease infinite;
        }
        
        /* ========== ANIMATIONS ========== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(-5px); }
            50% { transform: translateY(-10px); }
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* ========== LOADER ========== */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1a472a 0%, #2d6a3f 50%, var(--primary-green) 100%);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        
        .loader-content {
            text-align: center;
        }
        
        .loader-spinner {
            width: 80px;
            height: 80px;
            border: 6px solid rgba(255, 255, 255, 0.2);
            border-top-color: var(--white);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }
        
        .loader-text {
            color: var(--white);
            font-size: 24px;
            font-weight: 700;
            margin: 0;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .loader-subtext {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            margin: 10px 0 0;
        }
        
        body.loaded .page-loader {
            opacity: 0;
            visibility: hidden;
        }
        
        /* ========== RESPONSIVE STYLES ========== */
        @media (max-width: 1024px) {
            .footer-top {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .blocks-wrapper .col-6,
            .blocks-wrapper .col-4,
            .blocks-wrapper .col-2 {
                grid-column: span 6;
            }
            
            /* Tablet responsive tables */
            .technical-table-container {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
            
            .technical-table {
                min-width: 800px;
            }
            
            .technical-table thead th,
            .technical-table tbody td {
                font-size: 12px;
                padding: 10px 8px;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .hero .btn {
                width: 100%;
                text-align: center;
            }
            
            .blocks-wrapper .col-6,
            .blocks-wrapper .col-4,
            .blocks-wrapper .col-2 {
                grid-column: span 12;
            }
            
            /* Footer mobile optimization */
            footer {
                padding: 20px 0 10px !important;
            }
            
            .footer-wrapper {
                padding: 0 15px !important;
            }
            
            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
                margin-bottom: 12px;
            }
            
            .footer-col {
                margin-bottom: 0;
            }
            
            .footer-heading {
                font-size: 13px;
                margin-bottom: 8px;
            }
            
            .footer-col ul li {
                margin-bottom: 4px;
            }
            
            .footer-col ul li a {
                font-size: 11px;
            }
            
            /* Mobile responsive tables - Card layout */
            .technical-table-container {
                max-height: 400px !important;
                overflow-y: auto !important;
                overflow-x: hidden !important;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
                border-radius: 8px;
                margin: 20px 0;
                position: relative;
                -webkit-overflow-scrolling: touch;
                scroll-behavior: smooth;
            }
            
            /* Scroll indicator at top - simplified */
            .technical-table-container::before {
                content: '' !important;
                display: none !important;
            }
            
            /* Header for card number and product code */
            .table-header-indicator {
                position: sticky !important;
                top: 0 !important;
                left: 0 !important;
                right: 0 !important;
                background: linear-gradient(135deg, var(--primary-green), var(--secondary-green)) !important;
                color: white !important;
                padding: 12px 15px !important;
                z-index: 10 !important;
                display: flex !important;
                align-items: center !important;
                justify-content: space-between !important;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
                border-radius: 8px 8px 0 0 !important;
                margin: 0 !important;
            }
            
            .table-header-indicator .card-number {
                font-size: 32px !important;
                font-weight: 900 !important;
                line-height: 1 !important;
                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
                min-width: 50px !important;
            }
            
            .table-header-indicator .product-code {
                position: absolute !important;
                left: 50% !important;
                transform: translateX(-50%) !important;
                font-size: 22px !important;
                font-weight: 900 !important;
                letter-spacing: 1px !important;
                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
            }
            
            .technical-table-container::after {
                display: none !important;
            }
            
            /* Add shadow to indicate scrollable content */
            .technical-table-container {
                background: 
                    linear-gradient(white 30%, rgba(255, 255, 255, 0)),
                    linear-gradient(rgba(255, 255, 255, 0), white 70%) 0 100%,
                    radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)),
                    radial-gradient(farthest-side at 50% 100%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)) 0 100%;
                background-repeat: no-repeat;
                background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;
                background-attachment: local, local, scroll, scroll;
            }
            
            .technical-table {
                display: block;
                width: 100%;
                min-width: 0;
            }
            
            .technical-table thead {
                display: none;
            }
            
            .technical-table tbody {
                display: block;
            }
            
            .technical-table tbody tr {
                display: block;
                margin-bottom: 15px;
                border: 1px solid #e0e0e0;
                border-radius: 8px;
                background: var(--white);
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
                padding: 15px;
                height: auto !important;
                max-height: none !important;
            }
            
            /* Alternating row colors (shaded effect) */
            .technical-table tbody tr:nth-child(even) {
                background: #f8f9fa;
            }
            
            .technical-table tbody tr:nth-child(odd) {
                background: var(--white);
            }
            
            .technical-table tbody tr:hover {
                transform: none;
                background: rgba(45, 159, 60, 0.05) !important;
            }
            
            .technical-table tbody tr::after {
                display: none;
            }
            
            .technical-table tbody td {
                display: block;
                width: 100% !important;
                text-align: left !important;
                border: none !important;
                padding: 8px 0 !important;
                height: auto !important;
                max-height: none !important;
                white-space: normal;
                overflow: visible;
                text-overflow: clip;
            }
            
            .technical-table tbody td::before {
                content: attr(data-label);
                display: inline-block;
                font-weight: 700;
                color: var(--primary-green);
                text-transform: uppercase;
                font-size: 11px;
                letter-spacing: 0.5px;
                margin-bottom: 3px;
                width: 100%;
                background: rgba(27, 94, 32, 0.08);
                padding: 6px 10px;
                border-radius: 4px;
                margin-bottom: 5px;
            }
            
            /* Hide the Item Code field (second td after hiding first) */
            .technical-table tbody td:nth-child(2) {
                display: none !important;
            }
            
            .technical-table tbody td:first-child {
                display: none !important;
            }
            
            .technical-table tbody td:first-child::before {
                display: none;
            }
            
            /* Accessories table responsive styles */
            .accessories-table-container {
                overflow-x: hidden !important;
                overflow-y: auto !important;
                -webkit-overflow-scrolling: touch;
                border-radius: 8px !important;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
                max-height: 400px !important;
                margin: 20px 0 !important;
                position: relative;
                scroll-behavior: smooth;
            }
            
            .accessories-table {
                display: block;
                width: 100%;
            }
            
            .accessories-table thead {
                display: none;
            }
            
            .accessories-table tbody {
                display: block;
            }
            
            .accessories-table tbody tr {
                display: block;
                margin-bottom: 20px;
                border: 1px solid #e0e0e0;
                border-radius: 8px;
                background: var(--white);
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
                padding: 15px;
            }
            
            /* Alternating row colors for accessories table */
            .accessories-table tbody tr:nth-child(even) {
                background: #f8f9fa;
            }
            
            .accessories-table tbody tr:nth-child(odd) {
                background: var(--white);
            }
            
            .accessories-table tbody tr:hover {
                transform: none !important;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
                background: rgba(45, 159, 60, 0.05) !important;
            }
            
            .accessories-table tbody td {
                display: block !important;
                width: 100% !important;
                text-align: left !important;
                border: none !important;
                padding: 10px 0 !important;
            }
            
            /* Hide the numbering column (first td) */
            .accessories-table tbody td:nth-child(1) {
                display: none !important;
            }
            
            .accessories-table tbody td::before {
                content: attr(data-label);
                display: inline-block;
                font-weight: 700;
                color: var(--primary-green);
                text-transform: uppercase;
                font-size: 11px;
                letter-spacing: 0.5px;
                margin-bottom: 5px;
                width: 100%;
                background: rgba(27, 94, 32, 0.08);
                padding: 6px 10px;
                border-radius: 4px;
                margin-bottom: 8px;
            }
            
            /* Hide first column (numbering) and third column (code prefix) */
            .accessories-table tbody td:nth-child(1),
            .accessories-table tbody td:nth-child(3) {
                display: none !important;
            }
            
            /* Style the second column (Product Category) as the main header */
            .accessories-table tbody td:nth-child(2) {
                font-size: 16px;
                font-weight: 700;
                color: var(--primary-green);
                border-bottom: 2px solid var(--light-green) !important;
                padding-bottom: 12px !important;
                margin-bottom: 10px;
            }
            
            .accessories-table tbody td:nth-child(2)::before {
                display: none;
            }
            
            /* Add medium teal green highlight to the heading value div */
            .accessories-table tbody td:nth-child(2) > div > div[style*="font-weight: 600"] {
                background: rgba(32, 178, 170, 0.25) !important;
                padding: 8px 12px !important;
                border-radius: 6px !important;
                display: inline-block !important;
            }
            
            /* Make sure nested divs don't break the layout */
            .accessories-table tbody td > div {
                width: 100%;
            }
            
            /* Hide the green icon box with letter inside product category */
            .accessories-table tbody td > div > div[style*="width: 40px"] {
                display: none !important;
            }
            
            /* Adjust flex layout when icon is hidden */
            .accessories-table tbody td > div[style*="display: flex"] {
                display: block !important;
            }
            
            /* Fix action buttons in mobile view */
            .accessories-table tbody td a {
                width: 100%;
                text-align: center !important;
                justify-content: center !important;
            }
            
            /* Product detail cards mobile responsive */
            .product-detail-section {
                padding: 0 10px;
            }
            
            .product-detail-wrapper {
                padding: 30px 20px;
                border-radius: 15px;
                box-shadow: 0 10px 30px rgba(27, 94, 32, 0.25);
            }
            
            .section-header {
                margin-bottom: 30px;
            }
            
            .section-header h2 {
                font-size: 1.8rem !important;
                padding: 0 10px;
            }
            
            .product-detail-item {
                padding: 20px;
                margin-bottom: 30px;
                overflow: hidden;
                position: relative;
            }
            
            .product-detail-item::before {
                display: none;
            }
            
            .product-subtitle {
                font-size: 24px;
                margin-bottom: 20px;
                padding-bottom: 15px;
                border-bottom-width: 3px;
                cursor: pointer;
                transition: color 0.3s ease;
            }
            
            .product-subtitle:hover {
                color: var(--secondary-green);
            }
            
            .product-subtitle::after {
                content: '→';
                margin-left: 10px;
                font-size: 20px;
                opacity: 0.7;
            }
            
            .product-content-row {
                flex-direction: column;
                gap: 20px;
                margin-bottom: 20px;
            }
            
            .product-inline-image {
                width: 100%;
                max-width: 100%;
                height: 200px;
                margin: 0 auto 20px;
            }
            
            .product-description {
                padding-left: 15px;
                font-size: 14px;
                line-height: 1.7;
                text-align: left;
            }
            
            .product-description::before {
                width: 3px;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 28px;
                letter-spacing: 1px;
            }
            
            .hero p {
                font-size: 14px;
            }
            
            .technical-table tbody tr {
                padding: 12px;
            }
            
            .technical-table tbody td {
                font-size: 13px;
                padding: 6px 0 !important;
            }
            
            .technical-table tbody td:first-child {
                display: none !important;
            }
            
            .accessories-table tbody tr {
                padding: 12px;
            }
            
            .accessories-table tbody td {
                font-size: 13px;
                padding: 8px 0 !important;
            }
            
            .accessories-table tbody td:first-child {
                font-size: 15px;
            }
            
            /* Product detail cards for very small screens */
            .product-detail-section {
                padding: 0 5px;
            }
            
            .product-detail-wrapper {
                padding: 20px 15px;
                border-radius: 10px;
                box-shadow: 0 8px 20px rgba(27, 94, 32, 0.2);
            }
            
            .section-header {
                margin-bottom: 20px;
            }
            
            .section-header h2 {
                font-size: 1.5rem !important;
                padding: 0 5px;
            }
            
            .product-detail-item {
                padding: 15px;
                margin-bottom: 25px;
            }
            
            .product-detail-item::before {
                display: none;
            }
            
            .product-subtitle {
                font-size: 20px;
                margin-bottom: 15px;
                padding-bottom: 10px;
                letter-spacing: 0.5px;
            }
            
            .product-subtitle::after {
                font-size: 18px;
            }
            
            .technical-table-container {
                max-height: 350px !important;
            }
            
            .table-header-indicator {
                padding: 10px 12px !important;
            }
            
            .table-header-indicator .card-number {
                font-size: 28px !important;
                min-width: 45px !important;
            }
            
            .table-header-indicator .product-code {
                font-size: 18px !important;
            }
            
            .product-inline-image {
                height: 180px;
                margin-bottom: 15px;
            }
            
            .product-description {
                font-size: 13px;
                line-height: 1.6;
                padding-left: 12px;
            }
        }
    