* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-green: #2d7a3e;
            --light-green: #e8f5e9;
            --wood-brown: #8B5A2B;
            --light-wood: #f5e6d3;
            --warm-beige: #faf8f5;
            --dark-text: #2c3e50;
            --gray-text: #5a6c7d;
            --border-color: #e0d4c8;
            --card-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--warm-beige);
            color: var(--dark-text);
            line-height: 1.7;
        }

        .product-page {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Banner */
        .hero-banner {
            background: linear-gradient(135deg, var(--wood-brown) 0%, #6b4423 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 180px;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23ffffff" opacity="0.05" width="100" height="100"/></svg>');
            background-size: 20px 20px;
        }

        .hero-banner h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-banner p {
            font-size: 1.2rem;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
        }

        .main-content {
            padding: 60px 0;
        }

        .section-title {
            font-size: 1.8rem;
            color: var(--primary-green);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            font-weight: 700;
        }

        .section-title::before {
            content: '';
            width: 5px;
            height: 30px;
            background: var(--wood-brown);
            margin-right: 15px;
            border-radius: 2px;
        }

        /* --- Related Products Section (Top) --- */
        .products-section {
            padding: 50px 0;
            background: white;
            margin-top: 40px;
            margin-bottom: 40px;
            border-radius: 12px;
            box-shadow: var(--card-shadow);
            position: relative;
            z-index: 10;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .product-card {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            
        }

        .products-grid .product-card {
           padding-bottom: 20px;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-color: var(--primary-green);
        }

        .card-image {
            width: 100%;
            position: relative;
            background-color: #f5f5f5;
            height: 250px; 
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .product-card:hover .card-image img {
            transform: scale(1.05);
        }

        .card-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex-grow: 1;
        }

        .card-title {
            font-size: 1.1rem;
            margin-bottom: 15px;
            line-height: 1.4;
            height: 2.8em;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .card-link {
            color: var(--primary-green);
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            align-self: flex-start;
            transition: color 0.2s;
        }

        .card-link:hover {
            color: var(--wood-brown);
        }

        /* --- Main Intro Section --- */
        .intro-section {
            background: white;
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: var(--card-shadow);
            border-left: 5px solid var(--wood-brown);
            font-size: 16px;
    line-height: 30px;
        }

        .intro-section h4 {
            font-size: 1.5rem;
            color: var(--wood-brown);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .tm-p {
            margin-bottom: 15px;
            color: var(--gray-text);
            text-align: justify;
        }

        /* --- About Us Section --- */
        .about-section {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            margin-bottom: 40px;
            display: flex;
            flex-wrap: wrap;
        }

        .about-section ._left {
            flex: 1;
            min-width: 300px;
        }

        .about-section ._right {
            flex: 1;
            min-width: 300px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .about-section ._img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            min-height: 300px;
        }

        .seo_title {
            font-size: 1.8rem;
            color: var(--wood-brown);
            margin-bottom: 20px;
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
        }

        .seo_title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-green);
        }

        ._text {
            color: var(--gray-text);
            font-size: 1.05rem;
            line-height: 1.8;
        }

        ._text a {
            color: var(--primary-green);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px dashed var(--primary-green);
        }

        ._text a:hover {
            color: var(--wood-brown);
            border-bottom-style: solid;
        }

        /* --- Honor Section (Slider) --- */
        .honor-section {
            background: white;
            border-radius: 12px;
            padding: 40px 40px 60px 40px; /* Extra bottom padding for shadow/arrows */
            margin-bottom: 40px;
            box-shadow: var(--card-shadow);
            position: relative;
        }

        .honor-slider-wrapper {
            position: relative;
            margin-top: 30px;
        }

        .honor-slider-track {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            gap: 25px;
            padding: 10px 5px 20px 5px;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none;  /* IE 10+ */
            scroll-snap-type: x mandatory;
        }

        .honor-slider-track::-webkit-scrollbar {
            display: none; /* Chrome/Safari/Opera */
        }

        .honor-card {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            min-width: 280px; /* Fixed width for cards in slider */
            max-width: 280px;
            flex: 0 0 auto;
            scroll-snap-align: start;
        }

        .honor-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            border-color: var(--primary-green);
        }

        .honor-card ._img {
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f9f9f9;
            border-radius: 4px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .honor-card ._img img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .honor-card ._name {
            font-size: 0.95rem;
            color: var(--dark-text);
            font-weight: 500;
            line-height: 1.4;
        }

        /* Slider Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary-green);
            color: white;
            border: none;
            cursor: pointer;
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .slider-arrow:hover {
            background: var(--wood-brown);
        }
        
        .slider-arrow:disabled {
            background: #ccc;
            cursor: not-allowed;
            opacity: 0.5;
        }

        .slider-arrow.prev { left: -15px; }
        .slider-arrow.next { right: -15px; }

        /* --- About Numbers / Stats Section --- */
        .stats-section {
            background: linear-gradient(to right, var(--light-green), #fff);
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: var(--card-shadow);
        }

        .stats-section .grid-box {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            list-style: none;
        }

        .stats-section .column {
            background: white;
            padding: 25px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
        }

        .stats-section .column:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .stats-section .column i {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            background: var(--light-wood);
            border-radius: 50%;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .stats-section .column i img {
            width: 40px;
            height: auto;
            display: block;
        }

        .stats-section .text {
            flex-grow: 1;
        }

        .stats-section .num {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-green);
            line-height: 1;
            margin-bottom: 5px;
            font-family: 'Arial', sans-serif;
        }

        .stats-section .num em {
            font-style: normal;
        }

        .stats-section .num span {
            font-size: 1rem;
            color: var(--wood-brown);
            margin-left: 2px;
        }

        .stats-section .font-18 {
            font-size: 0.95rem;
            color: var(--gray-text);
            font-weight: 500;
            line-height: 1.3;
        }
        
        .cl { clear: both; }

        /* --- Content Grid (Specs, Apps, etc) --- */
        .content-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .info-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--card-shadow);
            font-size: 16px;
            line-height: 30px;
        }

        .info-card h4 {
            font-size: 1.3rem;
            color: var(--primary-green);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .tm-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .tm-table tr:nth-child(even) {
            background-color: var(--light-green);
        }

        .tm-table td {
            padding: 15px 20px;
            border: 1px solid var(--border-color);
            font-size: 0.95rem;
        }

        .tm-table tr td:first-child {
            font-weight: 600;
            color: var(--wood-brown);
            width: 30%;
            background-color: var(--light-wood);
        }

        .tm-ul {
            list-style: none;
            padding-left: 0;
        }

        .tm-li {
            padding: 10px 0;
            padding-left: 25px;
            position: relative;
            color: var(--gray-text);
        }

        .tm-li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: var(--wood-brown);
            border-radius: 50%;
        }

        .tm-li strong {
            color: var(--wood-brown);
            font-weight: 600;
        }

        /* --- FAQ Section --- */
        .faq-section {
            background: white;
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: var(--card-shadow);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .faq-item {
            background: var(--light-wood);
            padding: 20px;
            border-radius: 8px;
            border-left: 3px solid var(--wood-brown);
        }

        .faq-question {
            font-weight: 600;
            color: var(--wood-brown);
            margin-bottom: 10px;
            font-size: 1rem;
        }

        .faq-answer {
            color: var(--gray-text);
            font-size: 0.95rem;
        }

        /* --- Related Info/Tags Section --- */
        .related-info-section {
            background: white;
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: var(--card-shadow);
        }

        .info-grid-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            list-style: none;
            padding: 0;
        }

        .related-info-item {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 20px;
            transition: all 0.3s ease;
        }

        .related-info-item:hover {
            border-color: var(--primary-green);
            box-shadow: 0 4px 15px rgba(45, 122, 62, 0.1);
            transform: translateY(-3px);
        }

        .related-info-item h3 {
            font-size: 1.1rem;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .related-info-item h3 a {
            text-decoration: none;
            color: var(--dark-text);
            transition: color 0.2s;
        }

        .related-info-item:hover h3 a {
            color: var(--primary-green);
        }

        .related-info-item p {
            color: var(--gray-text);
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
        }

        /* --- Other Sections --- */
        .full-width-section {
            background: linear-gradient(135deg, var(--light-green) 0%, white 100%);
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: var(--card-shadow);
            font-size: 16px;
    line-height: 30px;
        }
         .full-width-section h4{
             font-size: 20px;
    line-height: 1.8;
    font-weight: 600;
         }

        .comparison-list .tm-li {
            border-bottom: 1px solid var(--border-color);
            padding: 15px 0 15px 25px;
        }

        .comparison-list .tm-li:last-child {
            border-bottom: none;
        }

        .cta-section {
            background: var(--primary-green);
            color: white;
            padding: 50px;
            border-radius: 12px;
            text-align: center;
            box-shadow: var(--card-shadow);
        }

        .cta-section h3 {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background: white;
            color: var(--primary-green);
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        .technical-badge {
            display: inline-block;
            background: var(--wood-brown);
            color: white;
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 0.85rem;
            margin-right: 10px;
            margin-bottom: 10px;
        }

        .features-highlight {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }

        /* --- Responsive Design --- */
        @media (max-width: 1200px) {
            .products-grid { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 968px) {
            .content-grid, .faq-grid, .info-grid-list {
                grid-template-columns: 1fr;
            }
            .products-grid { grid-template-columns: repeat(2, 1fr); }
            .stats-section .grid-box { grid-template-columns: repeat(2, 1fr); }
            
            /* Adjust slider arrows for tablet */
            .slider-arrow.prev { left: 0; }
            .slider-arrow.next { right: 0; }
            
            .hero-banner h1 { font-size: 2rem; }
            .tm-table tr td:first-child { width: 35%; }
        }

        @media (max-width: 576px) {
            .products-grid { grid-template-columns: 1fr; }
            .stats-section .grid-box { grid-template-columns: 1fr; }
            
            .about-section { flex-direction: column; }
            .about-section ._right { padding: 25px; }
            
            .hero-banner { padding: 40px 0; }
            .hero-banner h1 { font-size: 1.6rem; }
            .hero-banner p { font-size: 1rem; }
            .intro-section, .specs-section, .faq-section, .related-info-section, .stats-section, .honor-section { padding: 25px; }
            .info-card { padding: 25px; }
            .tm-table td { padding: 12px 15px; }
            
            .stats-section .column {
                flex-direction: column;
                text-align: center;
                padding: 30px 20px;
            }
            .stats-section .column i {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            /* Hide arrows on mobile, rely on swipe */
            .slider-arrow { display: none; }
            .honor-card { min-width: 260px; max-width: 260px; }
        }

        .stats-section .grid-box.two>.column{
            width: 80%;
        }

        /* --- Contact Form Section (New) --- */
        .contact-form-section {
            background: white;
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: var(--card-shadow);
        }

        .contact-form-section .section-title {
            margin-bottom: 25px;
        }

        .contact-form-section h4 {
            display: none; /* Hide the original h4 from snippet, use unified section-title */
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .form-item {
            display: flex;
            flex-direction: column;
        }

        .form-item.full-width {
            grid-column: 1 / -1;
        }

        .form-item input,
        .form-item textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            background-color: #fcfcfc;
            transition: all 0.3s ease;
            resize: vertical;
        }

        .form-item input:focus,
        .form-item textarea:focus {
            outline: none;
            border-color: var(--primary-green);
            background-color: white;
            box-shadow: 0 0 0 3px rgba(45, 122, 62, 0.1);
        }

        .form-item textarea {
            min-height: 150px;
        }

        .form-item input[type="submit"] {
            background-color: var(--primary-green);
            color: white;
            font-weight: 700;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background-color 0.3s ease, transform 0.2s ease;
            width: 200px; /* Fixed width for button */
            align-self: flex-start;
        }

        .form-item input[type="submit"]:hover {
            background-color: #236030;
            transform: translateY(-2px);
        }

        .button-wrapper {
            display: flex;
            align-items: flex-start;
        }
