
         /* Common Section Styles */
        .section { padding: 40px 0; /* Reduced padding for policy sections */ background-color: #fff; margin-bottom: 20px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.08); }
        .section .container { padding: 20px; }
        /* .section:nth-of-type(even) { background-color: #f2f7fc; } */ /* Removed alternating bg for sections */
        .section-title { font-size: 36px; font-weight: 700; color: #2c3e50; text-align: center; margin-bottom: 15px; } 
        .section-subtitle { font-size: 18px; color: #555; text-align: center; max-width: 800px; margin: 0 auto 40px auto; line-height: 1.7;}

        /* News Card Styles */
        .news-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
        .news-article-card { background-color: #fff; border: 1px solid #eef2f7; border-radius: 8px; overflow: hidden; box-shadow: 0 3px 10px rgba(0,0,0,0.05); transition: box-shadow 0.3s ease, transform 0.3s ease; display: flex; flex-direction: column; }
        .news-article-card:hover { box-shadow: 0 6px 15px rgba(0,0,0,0.1); transform: translateY(-5px); }
        .news-article-card img.news-card-image { width: 100%; height: 180px; object-fit: cover; }
        .news-article-card .news-card-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
        .news-article-card .news-card-content h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.4; border-bottom: none; padding-bottom: 0; display: block;}
        .news-article-card .news-card-content h3 a { color: #2c3e50; font-weight: 600; }
        .news-article-card .news-card-content h3 a:hover { color: #007bff; }
        .news-article-card .news-excerpt { font-size: 14px; color: #555; margin-bottom: 15px; line-height: 1.6; flex-grow: 1; }
        .news-article-card .news-card-footer { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #888; border-top: 1px solid #f0f0f0; padding-top: 10px; margin-top: auto; }
        .news-article-card .news-card-footer .read-more-news { color: #007bff; font-weight: 500; }
        .news-article-card .news-card-footer .read-more-news:hover { text-decoration: underline; }
        .view-more-news-btn { display: block; text-align: center; margin: 30px auto 10px auto; padding: 10px 20px; background-color: #007bff; color: #fff; border-radius: 5px; font-size: 15px; font-weight: 500; transition: background-color 0.3s ease; max-width: 220px; }
        .view-more-news-btn:hover { background-color: #0056b3; text-decoration: none; }

              /* Right Side Float Widget Styles */
        .side-float-widget { position: fixed; top: 50%; right: 0; transform: translateY(-50%); background-color: #fff; border-radius: 8px 0 0 8px; box-shadow: -3px 3px 10px rgba(0,0,0,0.1); z-index: 990; padding: 10px 0; }
        .side-float-widget ul { list-style: none; padding: 0; margin: 0; }
        .side-float-widget li { padding: 12px 10px; text-align: center; cursor: pointer; border-bottom: 1px solid #f0f0f0; position: relative; transition: background-color 0.2s ease; }
        .side-float-widget li:last-child { border-bottom: none; }
        .side-float-widget li:hover { background-color: #f8f9fa; }
        .side-float-widget li a { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: #555; }
        .side-float-widget li a:hover { color: #007bff; text-decoration: none; }
        .side-float-widget .icon { font-size: 24px; margin-bottom: 5px; line-height: 1; }
        .side-float-widget .text { font-size: 12px; color: #333; display: block; }
        .side-float-widget li:hover .text { color: #007bff; }
        .side-float-widget .qr-code-popup { display: none; position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%); background-color: #fff; padding: 15px; border-radius: 8px; box-shadow: 0 0 15px rgba(0,0,0,0.15); text-align: center; width: 180px; z-index: 991; }
        .side-float-widget .qr-code-popup img { max-width: 150px; height: auto; margin-bottom: 8px; }
        .side-float-widget .qr-code-popup p { font-size: 12px; color: #555; margin: 0; }
        /* --- END OF COMMON STYLES --- */


        /* --- START OF POLICY-SHUANGRUAN.HTML SPECIFIC STYLES --- */
        .policy-product-header {
            background: linear-gradient(to right, #007bff, #0056b3);
            color: #fff;
            padding: 50px 20px;
            text-align: center;
            margin-bottom: 0; /* Remove bottom margin as sections follow */
            border-radius: 0; /* No rounding if sections follow directly */
        }
        .policy-product-header h1 { font-size: 42px; margin-bottom: 15px; font-weight: 700; }
        .policy-product-header p { font-size: 18px; max-width: 800px; margin: 0 auto; opacity: 0.9; }

        /* Page Layout: Main content and Side Nav */
        .policy-page-layout {
            display: flex;
            gap: 30px; /* Gap between content and side nav */
            padding-top: 30px; /* Space above content */
        }
        .policy-main-content {
            flex-grow: 1;
        }
        .policy-side-nav {
            width: 250px; /* Width of the side navigation */
            flex-shrink: 0;
            position: sticky;
            top: 80px; /* Adjust based on header height */
            height: calc(100vh - 100px); /* Adjust height */
            overflow-y: auto;
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        }
        .policy-side-nav h3 {
            font-size: 18px;
            color: #2c3e50;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        .policy-side-nav ul {
            list-style: none;
            padding: 0;
        }
        .policy-side-nav li a {
            display: block;
            padding: 10px 12px;
            color: #555;
            text-decoration: none;
            border-radius: 4px;
            font-size: 15px;
            transition: background-color 0.2s ease, color 0.2s ease;
            border-left: 3px solid transparent;
        }
        .policy-side-nav li a:hover {
            background-color: #eef3f8;
            color: #007bff;
        }
        .policy-side-nav li a.active {
            background-color: #e6f2ff;
            color: #007bff;
            font-weight: 600;
            border-left-color: #007bff;
        }

        /* Content Section Styling (formerly tab content) */
        .policy-content-section {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.07);
            margin-bottom: 30px; /* Space between sections */
            line-height: 1.8;
        }
        .policy-content-section:last-of-type {
            margin-bottom: 0;
        }
        .policy-content-section h2 { /* Replaced h3 with h2 for section titles */
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 2px solid #007bff;
            /* display: inline-block; */ /* If you want underline to be only under text */
        }
        .policy-content-section h4 {
            font-size: 20px;
            color: #0056b3;
            margin-top: 25px;
            margin-bottom: 15px;
        }
        .policy-content-section p { margin-bottom: 15px; color: #555;overflow:hidden; }
        .policy-content-section p img{max-width:80%;height:auto}
        .policy-content-section ul, .policy-content-section ol { margin-bottom: 20px; padding-left: 25px; color: #555; }
        .policy-content-section ul li, .policy-content-section ol li { margin-bottom: 10px; }
        .policy-content-section .highlight { color: #007bff; font-weight: bold; }
        
        .price-table { width: 100%; border-collapse: collapse; margin-top: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
        .price-table th, .price-table td { border: 1px solid #e0e0e0; padding: 12px 15px; text-align: left; }
        .price-table th { background-color: #f8f9fa; font-weight: 600; color: #333; }
        .price-table td { color: #555; }
        .price-table .price-value { font-weight: bold; color: #d9534f; }
        .price-table .note { font-size: 0.9em; color: #777; }

        .related-policies-list { list-style: none; padding: 0; }
        .related-policies-list li { background-color: #f9fcff; padding: 15px 20px; border-radius: 6px; margin-bottom: 10px; border: 1px solid #e8eef5; transition: all 0.2s ease-in-out; }
        .related-policies-list li:hover { border-left: 3px solid #007bff; box-shadow: 0 3px 10px rgba(0, 86, 179, 0.07); transform: translateX(2px); }
        .related-policies-list li a { color: #007bff; font-weight: 500; }
        .related-policies-list li a:hover { text-decoration: underline; }
        .related-policies-list li p { font-size: 0.9em; color: #666; margin-top: 5px; margin-bottom: 0; }

        .process-steps-list { list-style: none; padding: 0; counter-reset: process-counter; }
        .process-steps-list li { position: relative; padding: 15px 15px 15px 50px; margin-bottom: 15px; background-color: #fafdff; border-radius: 6px; border: 1px solid #e2ecf8; }
        .process-steps-list li::before { counter-increment: process-counter; content: counter(process-counter); position: absolute; left: 15px; top: 15px; background-color: #007bff; color: white; width: 25px; height: 25px; border-radius: 50%; text-align: center; line-height: 25px; font-weight: bold; }
        .process-steps-list li strong { display: block; font-size: 1.1em; color: #2c3e50; margin-bottom: 5px; }
        
        #other-news-updates { margin-top: 30px; } /* Ensure spacing for the last section */
        /* --- END OF POLICY-SHUANGRUAN.HTML SPECIFIC STYLES --- */
        

        /* --- RESPONSIVE STYLES (MERGED AND ADJUSTED) --- */
        @media (max-width: 992px) { /* Tablet and below */
            .news-card-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
            .footer-feature-item { flex-basis: calc(50% - 15px); }
            .footer-main-content .container { gap: 20px; }
            .footer-column { flex-basis: calc(50% - 10px); } 
            .footer-column.qr-code-column { flex-basis: 100%; margin-top: 20px; }

            .policy-page-layout { flex-direction: column; }
            .policy-side-nav {
                display: none; /* Hide side nav on tablets and mobile */
            }
             .policy-main-content {
                width: 100%;
            }
        }

        @media (max-width: 768px) { /* Mobile */
           
            .section { padding: 30px 15px; } /* Adjusted padding for mobile sections */
            .section .container { padding: 0; }
            .section-title { font-size: 28px; margin-bottom: 25px; }
            .news-card-grid { grid-template-columns: 1fr; }
            .contact-popup { width: 100%; max-width: 100%; border-radius: 0; }
          
            .side-float-widget { padding: 8px 0; /* display: none; */ /* Optionally hide on mobile */ }
            .side-float-widget li { padding: 10px 8px; }
            .side-float-widget .icon { font-size: 20px; }
            .side-float-widget .text { font-size: 10px; }
            .side-float-widget .qr-code-popup { width: 150px; }
            .side-float-widget .qr-code-popup img { max-width: 120px; }

            /* Policy page specific responsive for mobile */
            .policy-product-header h1 { font-size: 28px; }
            .policy-product-header p { font-size: 16px; }
            .policy-content-section { padding: 20px; }
            .policy-content-section h2 { font-size: 22px; }
            .policy-content-section h4 { font-size: 18px; }
        }

        @media (max-width: 480px) {
            .section-title { font-size: 24px; }
            .policy-product-header h1 { font-size: 24px; }
            .policy-content-section h2 { font-size: 20px; }
            .policy-content-section h4 { font-size: 17px; }
            .price-table th, .price-table td { padding: 8px 10px; font-size: 13px; }
            .process-steps-list li { padding: 12px 12px 12px 40px; }
            .process-steps-list li::before { width: 20px; height: 20px; line-height: 20px; font-size: 12px; left: 10px; top: 12px;}
           
        }
