/*-----------------------------------*\ 
  #Others
\*-----------------------------------*/

/* CSS Reset & Variables */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        :root {
            --primary: #E21B3C;
            --primary-hover: #C1122F;
            --text-dark: #0F172A;
            --text-muted: #64748B;
            --bg-light: #F8FAFC;
            --border-color: #E2E8F0;
            --footer-bg: #1E293B;
        }

        body {
            background-color: #FFFFFF;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header Navigation */
        header {
            border-bottom: 1px solid var(--border-color);
            background: #FFFFFF;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 72px;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
            text-decoration: none;
            z-index: 1001;
        }

        .logo span {
            color: var(--primary);
        }

        .logo svg {
            margin-right: 8px;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #334155;
            font-size: 14px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 4px;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .login-btn {
            text-decoration: none;
            color: #334155;
            font-size: 14px;
            font-weight: 500;
        }

        .join-btn {
            background-color: var(--primary);
            color: #FFFFFF;
            text-decoration: none;
            padding: 10px 24px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            transition: background-color 0.2s, transform 0.1s;
        }

        .join-btn:hover {
            background-color: var(--primary-hover);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text-dark);
            z-index: 1001;
        }

        /* Hero Section */
        .hero-section {
            background-color: #FAFAFA;
            background-image: radial-gradient(#E2E8F0 1.2px, transparent 1.2px);
            background-size: 24px 24px;
            padding: 60px 0 100px 0;
            text-align: center;
            position: relative;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #FFFFFF;
            border: 1px solid var(--border-color);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            color: #475569;
            margin-bottom: 24px;
            box-shadow: 0 1px 2px rgba(0,0,0,0.02);
        }

        .hero-section h1 {
            font-size: 48px;
            font-weight: 700;
            letter-spacing: -1px;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-section h1 span {
            color: var(--primary);
            display: block;
            margin-top: 4px;
        }

        .hero-subtext {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 680px;
            margin: 0 auto 40px auto;
            line-height: 1.6;
        }

        /* Search Hub */
        .search-container {
            max-width: 640px;
            margin: 0 auto 60px auto;
            display: flex;
            background: #FFFFFF;
            padding: 6px;
            border-radius: 8px;
            border: 1px solid #CBD5E1;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        }

        .search-wrapper {
            display: flex;
            align-items: center;
            flex: 1;
            padding-left: 12px;
        }

        .search-wrapper input {
            width: 100%;
            border: none;
            outline: none;
            font-size: 14px;
            padding: 10px;
            color: var(--text-dark);
        }

        .search-wrapper input::placeholder {
            color: #94A3B8;
        }

        .search-btn {
            background-color: var(--primary);
            color: #FFFFFF;
            border: none;
            padding: 0 28px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .search-btn:hover {
            background-color: var(--primary-hover);
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 20px;
        }

        .stat-card {
            background: #FFFFFF;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 32px 20px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .stat-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }

        .stat-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            color: var(--primary);
        }

        .stat-number {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-muted);
            font-weight: 600;
        }

        /* Enhanced Project Categories Section */
        .categories-section {
            padding: 90px 0;
            text-align: center;
            background-color: #F8FAFC;
            /* Layered premium grid design to maximize visual distinction */
            background-image: 
                radial-gradient(rgba(226, 232, 240, 0.6) 1.5px, transparent 1.5px),
                linear-gradient(180deg, #F1F5F9 0%, #FFFFFF 100%);
            background-size: 16px 16px, 100% 100%;
            background-blend-mode: multiply;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            position: relative;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            letter-spacing: -0.5px;
            margin-bottom: 12px;
        }

        .section-subtitle {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 40px;
        }

        /* Tabs Optimization */
        .tabs-container {
            display: flex;
            justify-content: center;
            border-bottom: 1px solid #E2E8F0;
            margin-bottom: 48px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .tab {
            padding: 14px 28px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            cursor: pointer;
            position: relative;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color 0.2s;
            user-select: none;
        }

        .tab span {
            font-size: 11px;
            background: #EDF2F7;
            color: #4A5568;
            padding: 2px 7px;
            border-radius: 10px;
            font-weight: 600;
        }

        .tab:hover {
            color: var(--text-dark);
        }

        .tab.active {
            color: var(--primary);
            font-weight: 600;
        }

        .tab.active span {
            background-color: #FFF5F5;
            color: var(--primary);
        }

        .tab.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary);
        }

        /* Tab Content Panel Handler */
        .tab-panel {
            display: none;
            animation: fadeIn 0.4s ease-in-out forwards;
        }

        .tab-panel.active-panel {
            display: grid;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Category Cards Grid Matrix */
        .categories-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            text-align: left;
            margin-bottom: 48px;
        }

        .category-card {
            background: #FFFFFF;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 32px;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.01), 0 2px 4px -1px rgba(0,0,0,0.01);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .category-card:hover {
            border-color: #CBD5E1;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .category-icon-box {
            background-color: #FFF5F5;
            color: var(--primary);
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .category-header h3 {
            font-size: 16px;
            font-weight: 600;
            color: #1E293B;
        }

        .category-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 24px;
        }

        .category-list li {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #475569;
            cursor: pointer;
            transition: color 0.15s;
        }

        .category-list li:hover {
            color: var(--primary);
        }

        .flame-icon {
            color: var(--primary);
            display: inline-flex;
            margin-right: 8px; /* Perfectly aligned to the left of text */
            font-size: 14px;
        }

        /* Modern Card View More Controls */
        .card-view-more {
            display: inline-flex;
            align-items: center;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s;
            margin-top: auto;
            width: max-content;
        }

        .card-view-more:hover {
            color: var(--primary);
        }

        /* View All CTA */
        .view-all-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--primary);
            color: #FFFFFF;
            text-decoration: none;
            padding: 14px 32px;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 600;
            transition: background-color 0.2s;
            margin-bottom: 20px;
        }

        .view-all-btn:hover {
            background-color: var(--primary-hover);
        }

        .match-text {
            font-size: 13px;
            color: var(--text-muted);
        }

        .match-text a {
            color: var(--primary);
            text-decoration: underline;
            font-weight: 500;
        }

        /* Footer */
        footer {
            background-color: var(--footer-bg);
            color: #94A3B8;
            padding: 80px 0 40px 0;
            font-size: 14px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 60px;
            border-bottom: 1px solid #334155;
            padding-bottom: 60px;
            margin-bottom: 40px;
        }

        .footer-brand .logo {
            color: #FFFFFF;
            margin-bottom: 16px;
        }

        .footer-brand p {
            line-height: 1.6;
            color: #94A3B8;
            max-width: 280px;
        }

        .footer-col h4 {
            color: #FFFFFF;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-col ul a {
            color: #94A3B8;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-col ul a:hover {
            color: #FFFFFF;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: #64748B;
        }

        /* Responsive Setup Adjustments */
        @media (max-width: 1024px) {
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .categories-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            /* Responsive Mobile Navbar Layout Overlay */
            .nav-container {
                position: relative;
                flex-wrap: wrap;
                height: auto;
                min-height: 72px;
                padding-top: 14px;
                padding-bottom: 14px;
            }
            .logo { order: 1; }
            .menu-toggle { display: block; order: 2; }
            .nav-links {
                display: none;
                width: 100%;
                order: 3;
                position: static;
                flex-direction: column;
                background-color: #FFFFFF;
                padding: 20px 0 12px 0;
                gap: 16px;
                border-top: 1px solid var(--border-color);
                margin-top: 16px;
                box-shadow: none;
            }
            .nav-actions {
                display: none;
                width: 100%;
                order: 4;
                position: static;
                flex-direction: column;
                background-color: #FFFFFF;
                padding: 0 0 16px 0;
                gap: 12px;
                border-bottom: 1px solid var(--border-color);
                box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.06);
            }
            .nav-actions .join-btn,
            .nav-actions .login-btn {
                text-align: center;
                width: 100%;
                display: block;
                padding: 12px 20px;
            }
            .mobile-nav-active .nav-links,
            .mobile-nav-active .nav-actions {
                display: flex;
            }

            .hero-section h1 { font-size: 34px; }
            .stats-grid { grid-template-columns: 1fr; }
            .categories-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
        }



        /* Client Testimonials Section */
        .testimonials-section {
            padding: 90px 0;
            text-align: center;
            background-color: #FFFFFF;
            border-top: 1px solid var(--border-color);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            text-align: left;
            margin-top: 48px;
        }

        .testimonial-card {
            background: #FFFFFF;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.01), 0 2px 4px -1px rgba(0,0,0,0.01);
            transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            border-color: #CBD5E1;
            box-shadow: 0 12px 20px -3px rgba(15, 23, 42, 0.04);
        }

        .rating-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 20px;
            color: #F59E0B; /* Premium Amber/Gold color for stars */
        }

        .testimonial-text {
            font-size: 15px;
            line-height: 1.6;
            color: #334155;
            margin-bottom: 28px;
            font-style: italic;
        }

        .client-profile {
            display: flex;
            align-items: center;
            gap: 14px;
            border-top: 1px solid #F1F5F9;
            padding-top: 20px;
        }

        .client-avatar {
            width: 44px;
            height: 44px;
            background-color: #F1F5F9;
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            border: 2px solid #E2E8F0;
        }

        .client-info h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 2px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .verified-badge {
            color: #10B981; /* Success Green */
            display: inline-flex;
        }

        .client-info p {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* Responsive Rules for Testimonials */
        @media (max-width: 1024px) {
            .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .testimonials-grid { grid-template-columns: 1fr; }
        }

        /* Related Blog Section */
        .blog-section {
            padding: 90px 0;
            text-align: center;
            background-color: #F8FAFC;
            border-top: 1px solid var(--border-color);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            text-align: left;
            margin-top: 48px;
        }

        .blog-card {
            background: #FFFFFF;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.01), 0 2px 4px -1px rgba(0,0,0,0.01);
            transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
        }

        .blog-card:hover {
            transform: translateY(-4px);
            border-color: #CBD5E1;
            box-shadow: 0 12px 20px -3px rgba(15, 23, 42, 0.04);
        }

        /* Graphic Image Placeholder (Maintains design without external assets) */
        .blog-image-cover {
            height: 200px;
            background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.15);
        }

        .blog-card:nth-child(2) .blog-image-cover {
            background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
        }

        .blog-card:nth-child(3) .blog-image-cover {
            background: linear-gradient(135deg, #334155 0%, #475569 100%);
        }

        .blog-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background-color: rgba(255, 255, 255, 0.95);
            color: var(--text-dark);
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .blog-content {
            padding: 15px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 12px;
            font-weight: 500;
        }

        .blog-meta .dot-separator {
            width: 4px;
            height: 4px;
            background-color: #CBD5E1;
            border-radius: 50%;
        }

        .blog-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.4;
            margin-bottom: 12px;
            text-decoration: none;
            transition: color 0.15s;
        }

        .blog-card:hover .blog-title {
            color: var(--primary);
        }

        .blog-excerpt {
            font-size: 14px;
            color: #475569;
            line-height: 1.6;
            margin-bottom: 24px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-read-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-dark);
            text-decoration: none;
            margin-top: auto;
            transition: color 0.15s, gap 0.15s;
        }

        .blog-card:hover .blog-read-link {
            color: var(--primary);
            gap: 10px;
        }

        /* Responsive Rules for Blog Grid */
        @media (max-width: 1024px) {
            .blog-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .blog-grid { grid-template-columns: 1fr; }
        }


/* Supplementary styles for dynamic products/blogs matching the new theme */
        .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; margin-top: 30px; }
        .product-card { background: #fff; border: 1px solid #e2e8f0; padding: 16px; border-radius: 12px; transition: box-shadow 0.3s ease; }
        .product-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
        .product-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; margin-bottom: 15px; }
        .product-card h4 { margin: 0 0 10px 0; font-size: 1.1rem; color: #0f172a; }
        
        .blogs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-top: 30px; }
        .blog-card { background: #fff; border: 1px solid #e2e8f0; padding: 10px; border-radius: 12px; }
        .blog-card h4 { font-size: 1.2rem; color: #0f172a; margin-bottom: 12px; }
        .blog-card p { color: #64748b; font-size: 0.95rem; line-height: 1.5; margin-bottom: 16px; }
        .blog-link { color: #E21B3C; font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
        .blog-link:hover { text-decoration: underline; }

/* Custom Styles for Industrial Directory */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: 700;
}

.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1920x600/003366/ffffff?text=Industrial+Machines') center/cover no-repeat;
    min-height: 500px;
}

.table th {
    background-color: #f8f9fa;
}

footer a {
    transition: color 0.2s;
}

footer a:hover {
    color: #00bfff !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }
}

/*-----------------------------------*\ 
  #Privacy-Policy
\*-----------------------------------*/

    /* --- CSS Reset & Branding Variables (Inherited from Q9 Shop Theme) --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
        }

        :root {
            --primary: #E21B3C;
            --primary-hover: #C1122F;
            --text-dark: #0F172A;
            --text-muted: #64748B;
            --text-body: #334155;
            --bg-light: #F8FAFC;
            --border-color: #E2E8F0;
            --footer-bg: #1e293b;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.5;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* --- Sticky Header Navigation --- */
        header {
            border-bottom: 1px solid var(--border-color);
            background: #FFFFFF;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            display: flex; justify-content: space-between; align-items: center;
            height: 72px; position: relative;
        }

        .logo {
            display: flex; align-items: center; font-size: 22px; font-weight: 700;
            color: var(--text-dark); text-decoration: none; z-index: 1001;
        }
        .logo span { color: var(--primary); }
        .logo svg { margin-right: 8px; }

        .nav-links { display: flex; gap: 32px; list-style: none; }
        .nav-links a {
            text-decoration: none; color: #334155; font-size: 14px;
            font-weight: 500; display: flex; align-items: center; gap: 4px; transition: color 0.2s;
        }
        .nav-links a:hover { color: var(--primary); }

        .nav-actions { display: flex; align-items: center; gap: 24px; }
        .login-btn { text-decoration: none; color: #334155; font-size: 14px; font-weight: 500; }
        .join-btn {
            background-color: var(--primary); color: #FFFFFF; text-decoration: none;
            padding: 10px 24px; border-radius: 6px; font-size: 14px; font-weight: 600;
            transition: background-color 0.2s;
        }
        .join-btn:hover { background-color: var(--primary-hover); }
        .menu-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--text-dark); z-index: 1001; }

        /* --- Page Subheader Banner --- */
        .page-header {
            background-color: #FFFFFF;
            border-bottom: 1px solid var(--border-color);
            padding: 48px 0;
            text-align: center;
        }
        
        .breadcrumbs {
            font-size: 13px; color: var(--text-muted); display: flex; gap: 8px; 
            align-items: center; justify-content: center; margin-bottom: 16px;
        }
        .breadcrumbs a { color: var(--text-muted); text-decoration: none; }
        .breadcrumbs a:hover { color: var(--primary); }
        
        .page-header h1 {
            font-size: 36px; font-weight: 800; color: var(--text-dark); 
            letter-spacing: -0.5px; margin-bottom: 12px;
        }
        .page-header p {
            font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto;
        }

        /* --- Two-Column Legal Document Layout --- */
        .policy-layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 48px;
            margin-top: 48px;
            margin-bottom: 80px;
            align-items: start;
        }

        /* Sticky Left Sidebar Navigation */
        .sidebar-nav {
            position: sticky;
            top: 100px;
            background: #FFFFFF;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 24px;
        }

        .sidebar-nav h3 {
            font-size: 12px; font-weight: 700; text-transform: uppercase;
            color: var(--text-dark); margin-bottom: 16px; letter-spacing: 0.5px;
        }

        .toc-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
        .toc-links a {
            text-decoration: none; font-size: 14px; color: var(--text-body);
            font-weight: 500; line-height: 1.4; transition: all 0.2s; display: block;
        }
        .toc-links a:hover, .toc-links a.active {
            color: var(--primary); padding-left: 4px; font-weight: 600;
        }

        /* Right Content Card Styles */
        .policy-content {
            background: #FFFFFF;
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 48px;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.01);
        }

        .policy-meta {
            font-size: 13px; color: var(--text-muted); margin-bottom: 32px;
            display: flex; gap: 24px; border-bottom: 1px dashed var(--border-color); padding-bottom: 16px;
        }

        .policy-section {
            margin-bottom: 40px;
            scroll-margin-top: 100px;
        }
        .policy-section:last-child { margin-bottom: 0; }

        .policy-section h2 {
            font-size: 20px; font-weight: 700; color: var(--text-dark);
            margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid #F1F5F9;
        }

        .policy-section p {
            font-size: 15px; line-height: 1.6; color: var(--text-body); margin-bottom: 16px;
        }

        .policy-section ul, .policy-section ol { margin-left: 24px; margin-bottom: 16px; }
        .policy-section li { font-size: 15px; line-height: 1.6; color: var(--text-body); margin-bottom: 8px; }

        .highlight-box {
            background-color: var(--bg-light); border-left: 4px solid var(--primary);
            padding: 18px; border-radius: 0 8px 8px 0; margin-bottom: 24px;
        }
        .highlight-box p { margin-bottom: 0; font-size: 14px; font-weight: 500; color: var(--text-dark); }

        .officer-table {
            width: 100%; border-collapse: collapse; margin-top: 20px; margin-bottom: 16px;
        }
        .officer-table td { padding: 12px 16px; border: 1px solid var(--border-color); font-size: 14px; color: var(--text-body); }
        .officer-table td:first-child { font-weight: 600; background-color: var(--bg-light); width: 30%; color: var(--text-dark); }

        /* --- Footer Styles --- */
        footer { background: linear-gradient(to bottom right, #36454F, #001A40); color: #94A3B8; padding: 80px 0 40px 0; font-size: 15px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 60px; margin-bottom: 20px; }
        .footer-brand .logo { color: #FFFFFF; margin-bottom: 20px; display: inline-flex; }
        .footer-brand p { line-height: 1.6; color: #94A3B8; max-width: 300px; margin-bottom: 24px; }
        .social-links { display: flex; gap: 12px; }
        .social-link { width: 36px; height: 36px; border-radius: 50%; background-color: #112240; display: flex; align-items: center; justify-content: center; color: #94A3B8; text-decoration: none; transition: 0.2s; }
        .social-link:hover { background-color: var(--primary); color: #FFFFFF; }
        .footer-col h4 { color: #FFFFFF; font-size: 13px; font-weight: 700; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.5px; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
        .footer-col ul a { color: #94A3B8; text-decoration: none; transition: 0.2s; }
        .footer-col ul a:hover { color: #FFFFFF; }
        .newsletter-form { display: flex; gap: 12px; margin-top: 16px;}
        .newsletter-form input { flex: 1; background-color: #112240; border: 1px solid #1E293B; padding: 12px 16px; border-radius: 6px; color: #FFFFFF; outline: none; font-size: 14px; }
        .newsletter-form button { background-color: var(--primary); color: #FFFFFF; border: none; padding: 12px 24px; border-radius: 6px; font-weight: 600; cursor: pointer; transition: 0.2s; }
        .newsletter-form button:hover { background-color: var(--primary-hover); }
        .footer-bottom { display: flex; justify-content: center; align-items: center; font-size: 14px; color: #64748B; padding-top: 20px; border-top: 1px solid #1E293B; }

        /* --- Responsive Breakpoints --- */
        @media (max-width: 992px) {
            .policy-layout { grid-template-columns: 1fr; gap: 32px; }
            .sidebar-nav { position: static; width: 100%; }
            .toc-links { grid-template-columns: repeat(2, 1fr); display: grid; gap: 12px; }
        }

        @media (max-width: 768px) {
            .nav-container { flex-wrap: wrap; height: auto; min-height: 72px; padding-top: 14px; padding-bottom: 14px; }
            .menu-toggle { display: block; order: 2; }
            .logo { order: 1; }
            .nav-links { display: none; width: 100%; order: 3; margin-top: 20px; flex-direction: column; gap: 16px; border-top: 1px solid var(--border-color); padding-top: 20px; }
            .nav-actions { display: none; width: 100%; order: 4; margin-top: 16px; flex-direction: column; gap: 14px; padding-bottom: 10px; }
            .mobile-nav-active .nav-links, .mobile-nav-active .nav-actions { display: flex; }
            
            .toc-links { grid-template-columns: 1fr; }
            .policy-content { padding: 32px 20px; }
            .page-header h1 { font-size: 28px; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 576px) {
            .footer-grid { grid-template-columns: 1fr; }
            .newsletter-form { flex-direction: column; }
            .officer-table td { display: block; width: 100% !important; box-sizing: border-box; }
            .officer-table td:first-child { width: 100%; border-bottom: none; background-color: #E2E8F0; }
        }

/*-----------------------------------*\ 
  #Terms Of Use
\*-----------------------------------*/

    /* --- CSS Reset & Branding Variables (Inherited from Q9 Shop Theme) --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
        }

        :root {
            --primary: #E21B3C;
            --primary-hover: #C1122F;
            --text-dark: #0F172A;
            --text-muted: #64748B;
            --text-body: #334155;
            --bg-light: #F8FAFC;
            --border-color: #E2E8F0;
            --footer-bg: #1e293b;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.5;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* --- Sticky Header Navigation --- */
        header {
            border-bottom: 1px solid var(--border-color);
            background: #FFFFFF;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            display: flex; justify-content: space-between; align-items: center;
            height: 72px; position: relative;
        }

        .logo {
            display: flex; align-items: center; font-size: 22px; font-weight: 700;
            color: var(--text-dark); text-decoration: none; z-index: 1001;
        }
        .logo span { color: var(--primary); }
        .logo svg { margin-right: 8px; }

        .nav-links { display: flex; gap: 32px; list-style: none; }
        .nav-links a {
            text-decoration: none; color: #334155; font-size: 14px;
            font-weight: 500; display: flex; align-items: center; gap: 4px; transition: color 0.2s;
        }
        .nav-links a:hover { color: var(--primary); }

        .nav-actions { display: flex; align-items: center; gap: 24px; }
        .login-btn { text-decoration: none; color: #334155; font-size: 14px; font-weight: 500; }
        .join-btn {
            background-color: var(--primary); color: #FFFFFF; text-decoration: none;
            padding: 10px 24px; border-radius: 6px; font-size: 14px; font-weight: 600;
            transition: background-color 0.2s;
        }
        .join-btn:hover { background-color: var(--primary-hover); }
        .menu-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--text-dark); z-index: 1001; }

        /* --- Page Subheader Banner --- */
        .page-header {
            background-color: #FFFFFF;
            border-bottom: 1px solid var(--border-color);
            padding: 48px 0;
            text-align: center;
        }
        
        .breadcrumbs {
            font-size: 13px; color: var(--text-muted); display: flex; gap: 8px; 
            align-items: center; justify-content: center; margin-bottom: 16px;
        }
        .breadcrumbs a { color: var(--text-muted); text-decoration: none; }
        .breadcrumbs a:hover { color: var(--primary); }
        
        .page-header h1 {
            font-size: 36px; font-weight: 800; color: var(--text-dark); 
            letter-spacing: -0.5px; margin-bottom: 12px;
        }
        .page-header p {
            font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto;
        }

        /* --- Two-Column Legal Document Layout --- */
        .policy-layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 48px;
            margin-top: 48px;
            margin-bottom: 80px;
            align-items: start;
        }

        /* Sticky Left Sidebar Navigation */
        .sidebar-nav {
            position: sticky;
            top: 100px;
            background: #FFFFFF;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 24px;
        }

        .sidebar-nav h3 {
            font-size: 12px; font-weight: 700; text-transform: uppercase;
            color: var(--text-dark); margin-bottom: 16px; letter-spacing: 0.5px;
        }

        .toc-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
        .toc-links a {
            text-decoration: none; font-size: 14px; color: var(--text-body);
            font-weight: 500; line-height: 1.4; transition: all 0.2s; display: block;
        }
        .toc-links a:hover, .toc-links a.active {
            color: var(--primary); padding-left: 4px; font-weight: 600;
        }

        /* Right Content Card Styles */
        .policy-content {
            background: #FFFFFF;
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 48px;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.01);
        }

        .policy-meta {
            font-size: 13px; color: var(--text-muted); margin-bottom: 32px;
            display: flex; gap: 24px; border-bottom: 1px dashed var(--border-color); padding-bottom: 16px;
        }

        .policy-section {
            margin-bottom: 40px;
            scroll-margin-top: 100px;
        }
        .policy-section:last-child { margin-bottom: 0; }

        .policy-section h2 {
            font-size: 20px; font-weight: 700; color: var(--text-dark);
            margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid #F1F5F9;
        }

        .policy-section p {
            font-size: 15px; line-height: 1.6; color: var(--text-body); margin-bottom: 16px;
        }

        .policy-section ul, .policy-section ol { margin-left: 24px; margin-bottom: 16px; }
        .policy-section li { font-size: 15px; line-height: 1.6; color: var(--text-body); margin-bottom: 8px; }

        .highlight-box {
            background-color: var(--bg-light); border-left: 4px solid var(--primary);
            padding: 18px; border-radius: 0 8px 8px 0; margin-bottom: 24px;
        }
        .highlight-box p { margin-bottom: 0; font-size: 14px; font-weight: 500; color: var(--text-dark); }

        /* --- Footer Styles --- */
        footer { background: linear-gradient(to bottom right, #36454F, #001A40); color: #94A3B8; padding: 80px 0 40px 0; font-size: 15px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 60px; margin-bottom: 20px; }
        .footer-brand .logo { color: #FFFFFF; margin-bottom: 20px; display: inline-flex; }
        .footer-brand p { line-height: 1.6; color: #94A3B8; max-width: 300px; margin-bottom: 24px; }
        .social-links { display: flex; gap: 12px; }
        .social-link { width: 36px; height: 36px; border-radius: 50%; background-color: #112240; display: flex; align-items: center; justify-content: center; color: #94A3B8; text-decoration: none; transition: 0.2s; }
        .social-link:hover { background-color: var(--primary); color: #FFFFFF; }
        .footer-col h4 { color: #FFFFFF; font-size: 13px; font-weight: 700; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.5px; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
        .footer-col ul a { color: #94A3B8; text-decoration: none; transition: 0.2s; }
        .footer-col ul a:hover { color: #FFFFFF; }
        .newsletter-form { display: flex; gap: 12px; margin-top: 16px;}
        .newsletter-form input { flex: 1; background-color: #112240; border: 1px solid #1E293B; padding: 12px 16px; border-radius: 6px; color: #FFFFFF; outline: none; font-size: 14px; }
        .newsletter-form button { background-color: var(--primary); color: #FFFFFF; border: none; padding: 12px 24px; border-radius: 6px; font-weight: 600; cursor: pointer; transition: 0.2s; }
        .newsletter-form button:hover { background-color: var(--primary-hover); }
        .footer-bottom { display: flex; justify-content: center; align-items: center; font-size: 14px; color: #64748B; padding-top: 20px; border-top: 1px solid #1E293B; }

        /* --- Responsive Breakpoints --- */
        @media (max-width: 992px) {
            .policy-layout { grid-template-columns: 1fr; gap: 32px; }
            .sidebar-nav { position: static; width: 100%; }
            .toc-links { grid-template-columns: repeat(2, 1fr); display: grid; gap: 12px; }
        }

        @media (max-width: 768px) {
            .nav-container { flex-wrap: wrap; height: auto; min-height: 72px; padding-top: 14px; padding-bottom: 14px; }
            .menu-toggle { display: block; order: 2; }
            .logo { order: 1; }
            .nav-links { display: none; width: 100%; order: 3; margin-top: 20px; flex-direction: column; gap: 16px; border-top: 1px solid var(--border-color); padding-top: 20px; }
            .nav-actions { display: none; width: 100%; order: 4; margin-top: 16px; flex-direction: column; gap: 14px; padding-bottom: 10px; }
            .mobile-nav-active .nav-links, .mobile-nav-active .nav-actions { display: flex; }
            
            .toc-links { grid-template-columns: 1fr; }
            .policy-content { padding: 32px 20px; }
            .page-header h1 { font-size: 28px; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 576px) {
            .footer-grid { grid-template-columns: 1fr; }
            .newsletter-form { flex-direction: column; }
            .officer-table td { display: block; width: 100% !important; box-sizing: border-box; }
            .officer-table td:first-child { width: 100%; border-bottom: none; background-color: #E2E8F0; }
        }

/*-----------------------------------*\ 
  #CSS END
\*-----------------------------------*/

