:root {
        --primary-blue: #1a4f8a;
        --secondary-blue: #2d6ba8;
        --accent-orange: #f39c12;
        --light-gray: #f8f9fa;
        --border-color: #e0e0e0;
        --text-dark: #333333;
        --text-gray: #666666;
    }
    
    .tag-page-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 40px 20px;
        font-family: 'Segoe UI', Arial, sans-serif;
        background: #ffffff;
        color: var(--text-dark);
    }
    
    /* --- Header Section --- */
    .product-header {
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 30px;
        border-bottom: 2px solid var(--border-color);
    }
    
    .product-header h1 {
        color: var(--primary-blue);
        font-size: 36px;
        margin-bottom: 10px;
        font-weight: 700;
    }
    
    .product-header p {
        color: var(--text-gray);
        font-size: 18px;
        line-height: 1.8;
    }

    /* --- Section Titles --- */
    .section-title {
        color: var(--primary-blue);
        font-size: 30px;
        font-weight: 600;
        margin: 40px 0 20px 0;
        padding-bottom: 10px;
        border-bottom: 3px solid var(--accent-orange);
        display: inline-block;
    }
    
    /* --- Typography & Content --- */
    .nb-p {
        color: var(--text-dark);
        line-height: 30px;
        margin-bottom: 15px;
        font-size: 16px;
    }
    
    .nb-p strong {
        color: var(--primary-blue);
    }
    
    /* --- Tables --- */
    .nb-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        border-radius: 8px;
        overflow: hidden;
        font-size: 16px;
    line-height: 30px;
    }
    
    .nb-table th, .nb-table td {
        padding: 15px;
        text-align: left;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nb-table th {
        background: var(--primary-blue);
        color: white;
        font-weight: 600;
        width: 30%;
    }
    
    .nb-table tr:nth-child(even) {
        background: var(--light-gray);
    }
    
    .nb-table tr:hover {
        background: #e8f0f7;
    }

    /* --- Lists --- */
    .nb-ul {
        list-style: none;
        padding: 0;
    }
    
    .nb-li {
        padding: 12px 15px;
        margin-bottom: 8px;
        background: var(--light-gray);
        border-left: 4px solid var(--accent-orange);
        border-radius: 0 4px 4px 0;
        transition: transform 0.2s;
        color: black;
        font-size: 16px;
    line-height: 30px;
    }

    .nb-li:hover {
        transform: translateX(5px);
    }
    
    .nb-li strong {
        color: var(--primary-blue);
    }

    /* --- Layout Grids --- */
    .two-column {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin: 30px 0;
    }


 /* --- Related Products Grid Styles (New) --- */
    .products-grid-wrapper {
        margin: 30px 0;
    }
    
    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 25px;
    }
    
    .product-card {
        background: white;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-color: var(--secondary-blue);
    }
    
    .card-image {
        position: relative;
        background: #f0f0f0;
        padding-top: 75%; /* 4:3 Aspect Ratio container */
        overflow: hidden;
    }
    
    .card-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .product-card:hover .card-image img {
        transform: scale(1.05);
    }
    
    .card-content {
        padding: 20px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    
    .card-title {
        font-size: 16px;
        font-weight: 600;
        margin: 0 0 15px 0;
        line-height: 30px;
        color: var(--text-dark);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        flex-grow: 1;
    }
    
    .card-link {
        color: var(--accent-orange);
        font-weight: 600;
        text-decoration: none;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        margin-top: auto;
        transition: color 0.2s;
        line-height: 2;
    }
    
    .card-link:hover {
        color: var(--primary-blue);
    }


    /* --- Info Cards (Usage Tips) --- */
    .info-card {
        background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
        color: white;
        padding: 30px;
        border-radius: 8px;
        margin-bottom: 20px;
        box-shadow: 0 4px 15px rgba(26, 79, 138, 0.2);
    }
    
    .info-card h4 {
        margin-top: 0;
        font-size: 20px;
        border-bottom: 2px solid var(--accent-orange);
        padding-bottom: 10px;
        display: inline-block;
    }
    
    /* --- Accordion FAQ (From Plan 4) --- */
   .faq-container {
        max-width: 800px;
        margin: 30px auto;
        padding: 20px;
        font-family: 'Segoe UI', Arial, sans-serif;
    }
    
    .faq-header {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .faq-header h2 {
        color: var(--primary-blue);
        margin-bottom: 10px;
    }
    
    .faq-category {
        background: var(--accent-orange);
        color: white;
        padding: 8px 20px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
    }
    
    .accordion-item {
        border: 1px solid var(--border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
    }
    
    .accordion-header {
        background: white;
        padding: 18px 25px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background 0.3s;
            font-size: 18px;
    line-height: 1.8;
    font-weight: 600;
    }
    
    .accordion-header:hover {
        background: #f8f9fa;
    }
    
    .accordion-header h4 {
        margin: 0;
        color: var(--primary-blue);
        font-size: 16px;
    }
    
    .accordion-icon {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--primary-blue);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 18px;
    }
    
    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: #f8f9fa;
    }
    
    .accordion-content.active {
        max-height: 200px;
    }
    
    .accordion-body {
        padding: 20px 25px;
        color: #555;
        line-height: 30px;
        font-size: 16px;
    }
    
    .contact-box {
        background: linear-gradient(135deg, var(--primary-blue), #2d6ba8);
        color: white;
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        margin-top: 30px;
    }
    
    .contact-box h3 {
        margin-top: 0;
    }

    /* --- Certifications Badges --- */
    .certification-badge {
        display: inline-block;
        background: var(--accent-orange);
        color: white;
        padding: 8px 20px;
        border-radius: 20px;
        margin: 5px 5px 5px 0;
        font-weight: 600;
        font-size: 14px;
    }

    /* --- Comparison Table Specific --- */
    .comparison-table th {
        background: var(--accent-orange);
    }

    /* --- Responsive --- */
    @media (max-width: 768px) {
        .two-column {
            grid-template-columns: 1fr;
        }
        
        .product-header h1 {
            font-size: 28px;
        }

        .accordion-header {
            padding: 15px;
        }

        .accordion-header h4 {
            font-size: 15px;
        }
    }

    /* --- Related Info/Tags Grid Styles (New) --- */
    .related-info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 20px;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .related-info-item {
        background: white;
        border: 1px solid var(--border-color);
        border-radius: 6px;
        padding: 20px;
        transition: all 0.3s;
        display: flex;
        flex-direction: column;
    }
    
    .related-info-item:hover {
        border-color: var(--accent-orange);
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        background: #fffcf5; /* Very light orange tint */
    }
    
    .related-info-item h3 {
        margin: 0 0 10px 0;
        font-size: 18px;
        font-weight: 600;
    }
    
    .related-info-item h3 a {
        color: var(--primary-blue);
        text-decoration: none;
        transition: color 0.2s;
    }
    
    .related-info-item h3 a:hover {
        color: var(--accent-orange);
    }
    
    .related-info-item p {
        margin: 0;
        color: var(--text-gray);
        font-size: 14px;
        line-height: 1.6;
    }

    .tag-page-container h3{        
    font-size: 20px;
    line-height: 1.8;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
    }

    /* --- About Us Section (New) --- */
    .section-about-us {
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        overflow: hidden;
        margin: 90px 0;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        display: flex;
        flex-wrap: wrap;
    }
    
    .about-left {
        flex: 1;
        min-width: 300px;
        position: relative;
        overflow: hidden;
    }
    
    .about-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        min-height: 300px;
        margin-top: 200px;
    }
    
    .about-right {
        flex: 1;
        min-width: 300px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .seo_title {
        color: var(--primary-blue);
        font-size: 28px;
        font-weight: 700;
        margin: 0 0 20px 0;
        position: relative;
        padding-bottom: 15px;
    }
    
    .seo_title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 4px;
        background: var(--accent-orange);
    }
    
    .about-text {
        color: var(--text-dark);
        line-height: 1.8;
        font-size: 16px;
    }
    
    .about-text a {
        color: var(--primary-blue);
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px dashed var(--primary-blue);
        transition: all 0.2s;
    }
    
    .about-text a:hover {
        color: var(--accent-orange);
        border-bottom-style: solid;
    }

    /* --- Honor Section (New) --- */
    .section-honor {
        margin: 50px 0;
    }
    
    .honor-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        gap: 100px;
        margin-top: 30px;
    }
    
    .honor-item {
        background: white;
        border: 1px solid var(--border-color);
        padding: 15px;
        border-radius: 8px;
        transition: transform 0.3s;
    }
    
    .honor-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-color: var(--accent-orange);
    }
    
    .honor-item img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .section-about-us strong{
        font-weight: 800;
    }

    #seo_public_from.contact{
        background: unset;
        padding: 40px 0;
    }

    #seo_public_from.contact .ui.container{
        width: 1330px;
    }

    #seo_public_from.contact .seo_public_from{
        background: var(--light-gray);
    }