/* FULL WIDTH LAYOUT RULES - CRITICAL FOUNDATION */
/* Header: Full viewport width background, content constrained to 1200px */
/* Content: All sections constrained to 1200px max-width */
/* Mobile: Full width with proper padding */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #64748b;
    --success-color: #16a34a;
    --warning-color: #ea580c;
    --danger-color: #dc2626;
    --info-color: #0ea5e9;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --code-bg: #1e293b;
    --code-text: #e2e8f0;
    --max-width: 1200px;
}

/* SINGLE BODY RULE - Fixed */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    margin: 0;
    padding-top: 80px; /* Add this for fixed menu */
    width: 100%;
    
    /* Text wrapping fixes */
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    overflow-x: hidden;
}

/* Additional rules for specific elements that commonly overflow */
p, li, div, span, td, th {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Special handling for code elements and paths */
code, .path, .command-line, pre {
    word-break: break-all;
    overflow-wrap: anywhere;
    white-space: pre-wrap;
}

/* For tables to handle long content */
table {
    table-layout: fixed;
    width: 100%;
}

td, th {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* CONTAINER - 1200px max-width for content sections */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ARTICLE HEADER - Full viewport width background 
.article-header {
    background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
    color: white;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 2rem;
}

.article-header * {
    color: white !important;
}

.article-header::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"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
    opacity: 0.3;
}

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    opacity: 0.9;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.breadcrumb-item {
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    color: white !important;
}

.meta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white !important;
    position: relative;
    z-index: 1;
}

.meta-info {
    display: flex;
    gap: 2rem;
    font-size: 0.875rem;
    opacity: 0.9;
    flex-wrap: wrap;
    color: white !important;
    position: relative;
    z-index: 1;
}

.meta-item-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white !important;
}

.category-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.tag {
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    backdrop-filter: blur(10px);
    color: white !important;
}

.tag.primary-keyword {
    background: rgba(255,255,255,0.3);
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
    color: white !important;
}*/


/*Separator*/

.separator {
    height: 1px;
    background: #e5e7eb;
    margin: 30px;
    box-shadow: 0 1px 3px rgba(37, 99, 235, 0.15);
    position: relative;
}

.separator::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2563eb, transparent);
    opacity: 0.7;
}

/* TABLE OF CONTENTS - Constrained width */
 /* TOC Styles - FIXED - table of content */
       
              .toc-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            overflow: hidden; margin: 0;
            padding: 0;
            box-sizing: border-box;
               font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #f8fafc;
            padding: 1rem;
            line-height: 1.6;
        }

        /* Header */
        .toc-header {
            
            color: black;
            padding: 2rem 1.5rem;
            text-align: center;
        }

        .toc-title {
            font-size: clamp(1.5rem, 4vw, 2.25rem);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .toc-subtitle {
            opacity: 0.9;
            font-size: 1.1rem;
        }

        /* Navigation tabs */
        .nav-tabs {
            display: flex;
            background: #f1f5f9;
            border-bottom: 2px solid #e2e8f0;
            overflow-x: auto;
        }

        .nav-tab {
            padding: 1rem 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
            font-weight: 600;
            color: #64748b;
            transition: all 0.2s ease;
            white-space: nowrap;
            border-bottom: 3px solid transparent;
        }

        .nav-tab:hover {
            background: #e2e8f0;
            color: #1e293b;
        }

        .nav-tab.active {
            color: #3b82f6;
            background: white;
            border-bottom-color: #3b82f6;
        }

        /* Content sections */
        .content-section {
            display: none;
            padding: 1.5rem;
        }

        .content-section.active {
            display: block;
        }

        /* Chapter grid */
        .chapter-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .chapter-card {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 1.5rem;
            transition: all 0.2s ease;
            cursor: pointer;
            position: relative;
        }

        .chapter-card:hover {
            border-color: #3b82f6;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
        }

        .chapter-number {
            position: absolute;
            top: -10px;
            left: 1rem;
            background: #3b82f6;
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .chapter-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 0.5rem;
            margin-top: 0.5rem;
        }

        .chapter-description {
            color: #64748b;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .chapter-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
        }

        .chapter-duration {
            background: #e2e8f0;
            color: #64748b;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-weight: 500;
        }

        .chapter-difficulty {
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-weight: 500;
            font-size: 0.75rem;
        }

        .chapter-difficulty.beginner {
            background: #dcfce7;
            color: #166534;
        }

        .chapter-difficulty.intermediate {
            background: #fef3c7;
            color: #92400e;
        }

        .chapter-difficulty.advanced {
            background: #fee2e2;
            color: #991b1b;
        }

        /* Quick links */
        .quick-links {
            background: #f1f5f9;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }

        .quick-links-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .quick-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0.75rem;
        }

        .quick-link {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            padding: 0.75rem 1rem;
            text-decoration: none;
            color: #374151;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s ease;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .quick-link:hover {
            border-color: #3b82f6;
            color: #3b82f6;
            transform: translateX(2px);
        }

        .quick-link-icon {
            font-size: 1.1rem;
        }

        /* Progress section */
        .progress-section {
            background: #f8fafc;
            border-radius: 8px;
            padding: 1.5rem;
            border: 1px solid #e2e8f0;
        }

        .progress-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .progress-title {
            font-weight: 600;
            color: #1e293b;
        }

        .progress-stats {
            font-size: 0.9rem;
            color: #64748b;
        }

        .progress-bar {
            height: 8px;
            background: #e2e8f0;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 1rem;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #3b82f6, #1d4ed8);
            width: 24%;
            transition: width 0.3s ease;
        }

        .next-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .next-section:hover {
            border-color: #3b82f6;
            background: #f8fafc;
        }

        .next-content {
            flex: 1;
        }

        .next-label {
            font-size: 0.8rem;
            color: #64748b;
            margin-bottom: 0.25rem;
        }

        .next-title {
            font-weight: 600;
            color: #1e293b;
        }

        .next-arrow {
            color: #3b82f6;
            font-size: 1.2rem;
        }
        
        

        /* Mobile optimizations */
        @media (max-width: 640px) {
            .toc-container {
                margin: 0;
                border-radius: 0;
            }

            .toc-header {
                padding: 1.5rem 1rem;
            }

            .nav-tabs {
                padding: 0 1rem;
            }

            .nav-tab {
                padding: 0.75rem 1rem;
                font-size: 0.9rem;
            }

            .content-section {
                padding: 1rem;
            }

            .chapter-grid {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }

            .chapter-card {
                padding: 1.25rem;
            }

            .quick-links-grid {
                grid-template-columns: 1fr;
            }
        }
        
        
        /* ============= SERVICE GUIDE SECTION =============2 columns awesome     
    /* ========== GUIDE DUAL PANEL SECTION ========== */
.guide-dual-panel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 10px 20px;
}

.guide-panel-header {
    text-align: center;
    margin-bottom: 35px;
}

.guide-panel-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.guide-panel-subtitle {
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.5;
    max-width: 650px;
    margin: 0 auto;
}

/* Two Panel Layout */
.guide-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Panel Cards */
.guide-features-panel,
.guide-steps-panel {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    height: 620px;
}

/* Panel Headers */
.features-panel-heading,
.steps-panel-heading {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1.125rem;
    color: white;
    flex-shrink: 0;
}

.features-panel-heading {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.steps-panel-heading {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Scrollable Areas */
.features-list-scroll,
.steps-list-scroll {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
}

/* List Items */
.guide-feature-row,
.guide-step-row {
    padding: 18px 24px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: flex-start;
    transition: background-color 0.15s ease;
}

.guide-feature-row:hover,
.guide-step-row:hover {
    background-color: #f9fafb;
}

.guide-feature-row:last-child,
.guide-step-row:last-child {
    border-bottom: none;
}

/* Icons and Numbers */
.feature-icon-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
    font-size: 14px;
    color: white;
}

.icon-style-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.icon-style-green { background: linear-gradient(135deg, #10b981, #059669); }
.icon-style-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.icon-style-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.icon-style-red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.icon-style-teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }

.step-number-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 600;
}

/* Text Content */
.feature-text-content,
.step-text-content {
    flex: 1;
}

.feature-item-title,
.step-item-title {
    font-size: 0.975rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 3px;
    line-height: 1.3;
}

.feature-item-desc,
.step-item-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.4;
}

/* Scrollbar Styling */
.features-list-scroll::-webkit-scrollbar,
.steps-list-scroll::-webkit-scrollbar {
    width: 4px;
}

.features-list-scroll::-webkit-scrollbar-track,
.steps-list-scroll::-webkit-scrollbar-track {
    background: #f9fafb;
}

.features-list-scroll::-webkit-scrollbar-thumb,
.steps-list-scroll::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 2px;
}

.features-list-scroll::-webkit-scrollbar-thumb:hover,
.steps-list-scroll::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Remove bottom spacing */
.guide-dual-panel {
    margin-bottom: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .guide-panel-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .guide-features-panel,
    .guide-steps-panel {
        height: 350px;
    }
    
    .guide-panel-title {
        font-size: 1.875rem;
    }
}


/*hero section*/

       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-section {
            background: var(--bg-secondary);
            padding: 2rem;
            border-radius: 12px;
            margin-bottom: 3rem;
            border: 1px solid var(--border-color);
        }

        .hero-summary {
            font-size: 1.125rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .quick-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
            background: white;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            transition: transform 0.2s;
        }

        .stat-item:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .stat-label {
            font-size: 0.75rem;
            color: var(--text-secondary);
            margin-top: 0.25rem;
        }

        @media (max-width: 768px) {
            .quick-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .quick-stats {
                grid-template-columns: 1fr;
            }
        }
 
 
 

        
        /*tools requirement section*/
        
.tools-header {
            text-align: center;
            margin-bottom: 50px;
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .tools-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #00000;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .tools-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .tools-description {
            font-size: 1rem;
            color: #64748b;
            margin-top: 16px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Tools Grid */
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .tool-card {
            background: white;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .tool-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            border-color: #3b82f6;
        }

        .tool-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #1d4ed8);
        }

        .tool-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .tool-icon {
            width: 56px;
            height: 56px;
            
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 16px;
            font-size: 24px;
            color: white;
            box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
        }

        .tool-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1e293b;
            line-height: 1.3;
        }

        .tool-description {
            color: #64748b;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .tool-features {
            margin-bottom: 24px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 0.95rem;
            color: #374151;
        }

        .feature-check {
            width: 20px;
            height: 20px;
            background: #10b981;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            flex-shrink: 0;
            color: white;
            font-weight: bold;
            font-size: 12px;
        }

        .tool-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding: 16px;
            background: #f8fafc;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
        }

        .meta-item-tools {
            text-align: center;
            flex: 1;
        }

        .meta-value {
            font-weight: 600;
            color: #2563eb;
            font-size: 1.1rem;
        }

        .meta-label {
            font-size: 0.8rem;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-top: 2px;
        }

        .tool-action {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .tool-button {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            text-align: center;
            font-size: 0.95rem;
        }

        .button-primary {
            background: #3b82f6;
            color: white;
        }

        .button-primary:hover {
            background: #2563eb;
            transform: translateY(-1px);
        }

        .button-secondary {
            background: transparent;
            color: #3b82f6;
            border: 2px solid #3b82f6;
        }

        .button-secondary:hover {
            background: #3b82f6;
            color: white;
        }

        .tool-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            padding: 4px 12px;
            background: #10b981;
            color: white;
            border-radius: 16px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .badge-free {
            background: #10b981;
        }

        .badge-premium {
            background: #f59e0b;
        }

        .badge-enterprise {
            background: #8b5cf6;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .tools-grid {
                gap: 20px;
            }
            
            .tool-card {
                padding: 24px;
            }
        }

        @media (max-width: 768px) {
            .tools-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .tools-title {
                font-size: 2rem;
            }
            
            .tool-header {
                flex-direction: column;
                text-align: center;
            }
            
            .tool-icon {
                margin-right: 0;
                margin-bottom: 12px;
            }
            
            .tool-action {
                flex-direction: column;
            }
            
            .tool-button {
                width: 100%;
            }
        }

        /* Animation for cards appearing */
        .tool-card {
            opacity: 0;
            transform: translateY(20px);
            animation: slideUp 0.6s ease forwards;
        }

        .tool-card:nth-child(1) { animation-delay: 0.1s; }
        .tool-card:nth-child(2) { animation-delay: 0.2s; }
        .tool-card:nth-child(3) { animation-delay: 0.3s; }
        .tool-card:nth-child(4) { animation-delay: 0.4s; }
        .tool-card:nth-child(5) { animation-delay: 0.5s; }
        .tool-card:nth-child(6) { animation-delay: 0.6s; }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        
       
        /*symptoms checklist section*/
        
       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       
        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .symptoms-section {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .section-subtitle {
            font-size: 0.875rem;
            color: var(--text-secondary);
            font-weight: 400;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .symptoms-list {
            display: grid;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        .symptom-item {
            display: flex;
            align-items: center;
            padding: 0.75rem;
            background: var(--bg-secondary);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .symptom-item:hover {
            background: #e0f2fe;
            transform: translateX(4px);
        }

        .symptom-checkbox {
            margin-right: 0.75rem;
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .radial-score {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
        }

        .score-label {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .radial-container {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .radial-chart {
            position: relative;
            width: 150px;
            height: 150px;
        }

        .radial-chart svg {
            transform: rotate(-90deg);
            width: 100%;
            height: 100%;
        }

        .radial-bg {
            fill: none;
            stroke: var(--border-color);
            stroke-width: 12;
        }

        .radial-progress {
            fill: none;
            stroke: var(--success-color);
            stroke-width: 12;
            stroke-linecap: round;
            stroke-dasharray: 377;
            stroke-dashoffset: 0;
            transition: all 0.5s ease;
        }

        .radial-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }

        .radial-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .radial-label {
            font-size: 0.75rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .radial-details {
            flex: 1;
        }

        .detail-item {
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .detail-item:last-child {
            border-bottom: none;
        }

        .detail-label {
            color: var(--text-secondary);
        }

        .detail-value {
            font-weight: 600;
            color: var(--text-primary);
        }

        .detail-value.low { color: var(--success-color); }
        .detail-value.medium { color: var(--warning-color); }
        .detail-value.high { color: #ea580c; }
        .detail-value.critical { color: var(--danger-color); }

        .diagnosis-result {
            margin-top: 1.5rem;
            padding: 1.5rem;
            background: var(--bg-tertiary);
            border-radius: 8px;
            display: none;
        }

        .diagnosis-result.show {
            display: block;
        }

        .fix-section {
            margin-top: 1rem;
        }

        .fix-title {
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .fix-command {
            background: #1e293b;
            color: #10b981;
            padding: 0.75rem;
            border-radius: 4px;
            font-family: 'Courier New', monospace;
            font-size: 0.875rem;
            margin: 0.5rem 0;
            overflow-x: auto;
        }

        .fix-description {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin: 0.25rem 0;
        }

        .performance-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 1rem;
            padding: 1rem;
            background: white;
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }

        .metric {
            text-align: center;
        }

        .metric-value {
            font-size: 1.25rem;
            font-weight: 700;
            display: block;
        }

        .metric-label {
            font-size: 0.75rem;
            color: var(--text-secondary);
        }

        .reset-btn {
            margin-top: 1rem;
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.875rem;
        }

        .reset-btn:hover {
            background: #1d4ed8;
        }

        @media (max-width: 768px) {
            .radial-container {
                flex-direction: column;
            }
            .performance-metrics {
                grid-template-columns: 1fr;
            }
        }
        
        
        
        /*common causes and analysis*/
  
                .container-common-causes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .card {
            background: white;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border: 1px solid #e0e0e0;
            position: relative;
            overflow: hidden;
        }

        .card-header {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 18px;
        }

        .icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .card-title {
            font-size: 18px;
            font-weight: 600;
            color: #2c2c2c;
            margin: 0;
            line-height: 1.3;
        }

        .percentage {
            background: #dc3545;
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 600;
            margin-left: auto;
            flex-shrink: 0;
        }

        .percentage.medium {
            background: #fd7e14;
        }

        .percentage.low {
            background: #007bff;
        }

        .description {
            color: #666;
            font-size: 15px;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .indicators {
            margin-bottom: 20px;
            background: #e3f2fd;
            padding: 12px 16px;
            border-radius: 6px;
            border-left: 3px solid #007bff;
        }

        .indicators-title {
            font-weight: 600;
            color: #007bff;
            font-size: 15px;
            margin-bottom: 8px;
        }

        .indicators-text {
            color: #666;
            font-size: 14px;
            line-height: 1.4;
        }

        .symptoms-title {
            font-weight: 600;
            color: #2c2c2c;
            font-size: 16px;
            margin-bottom: 16px;
        }

        .symptom-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 15px;
            color: #444;
        }

        .check-icon {
            width: 18px;
            height: 18px;
            background: #28a745;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .check-icon::before {
            content: "✓";
            color: white;
            font-size: 12px;
            font-weight: bold;
        }

        
        /* Conclusion Section*/
        

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Main Header */
        .conclusion-header {
            text-align: center;
            margin-bottom: 50px;
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
              font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #334155;
            background: #f8fafc;
            padding: 40px 20px;
        }

        .conclusion-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2563eb;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .conclusion-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Success Metrics Banner */
        .success-banner {
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            color: white;
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .success-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"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>') repeat;
            background-size: 50px 50px;
        }

        .success-content {
            position: relative;
            z-index: 1;
        }

        .success-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .success-description {
            font-size: 1.1rem;
            opacity: 0.95;
            margin-bottom: 25px;
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin: 40px 0;
        }

        .stat-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #e2e8f0;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #1d4ed8);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2563eb;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 1rem;
            font-weight: 500;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .stat-description {
            font-size: 0.9rem;
            color: #64748b;
            margin-top: 8px;
            line-height: 1.5;
        }

        /* Key Takeaways Section */
        .takeaways-section {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin: 40px 0;
        }

        .takeaways-header {
            text-align: center;
            margin-bottom: 35px;
        }

        .takeaways-title {
            font-size: 2rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 12px;
        }

        .takeaways-subtitle {
            color: #64748b;
            font-size: 1.1rem;
        }

        .takeaways-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 20px;
        }

        .takeaway-item {
            display: flex;
            align-items: flex-start;
            padding: 20px;
            background: #f8fafc;
            border-radius: 12px;
            border-left: 4px solid #10b981;
            transition: transform 0.2s ease;
        }

        .takeaway-item:hover {
            transform: translateX(4px);
            background: #f0fdf4;
        }

        .takeaway-check {
            width: 24px;
            height: 24px;
            background: #10b981;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 16px;
            flex-shrink: 0;
            color: white;
            font-weight: bold;
            font-size: 14px;
        }

        .takeaway-content {
            flex: 1;
        }

        .takeaway-title {
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 4px;
            font-size: 1rem;
        }

        .takeaway-description {
            color: #64748b;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* Implementation Guide */
        .implementation-guide {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin: 40px 0;
        }

        .implementation-header {
            text-align: center;
            margin-bottom: 35px;
        }

        .implementation-title {
            font-size: 2rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 12px;
        }

        .step-flow {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 30px;
        }

        .step-card {
            background: #f8fafc;
            padding: 24px;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            position: relative;
            transition: all 0.2s ease;
        }

        .step-card:hover {
            border-color: #3b82f6;
            transform: translateY(-2px);
        }

        .step-number-conclusion {
            position: absolute;
            top: -12px;
            left: 20px;
            width: 24px;
            height: 24px;
            background: #3b82f6;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 12px;
        }

        .step-title {
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 8px;
            font-size: 1.1rem;
            margin-top: 8px;
        }

        .step-description {
            color: #64748b;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .step-time {
            font-size: 0.8rem;
            color: #10b981;
            font-weight: 500;
            margin-top: 8px;
        }

        /* Prevention Checklist */
        .prevention-section {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin: 40px 0;
        }

        .prevention-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .prevention-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #10b981, #059669);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 16px;
            font-size: 24px;
        }

        .prevention-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: #1e293b;
        }

        .checklist-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 16px;
        }

        .checklist-item {
            display: flex;
            align-items: center;
            padding: 16px;
            background: #f8fafc;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .checklist-item:hover {
            background: #f0fdf4;
            border-color: #10b981;
        }

        .checklist-checkbox {
            width: 20px;
            height: 20px;
            border: 2px solid #d1d5db;
            border-radius: 4px;
            margin-right: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .checklist-checkbox.checked {
            background: #10b981;
            border-color: #10b981;
            color: white;
        }

        .checklist-text {
            font-size: 0.95rem;
            color: #374151;
            line-height: 1.4;
        }

        /* Resources Grid */
        .resources-section {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin: 40px 0;
        }

        .resources-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: #1e293b;
            text-align: center;
            margin-bottom: 30px;
        }

        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 16px;
        }

        .resource-link {
            display: flex;
            align-items: center;
            padding: 16px 20px;
            background: #f8fafc;
            color: #374151;
            text-decoration: none;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            transition: all 0.2s ease;
            font-weight: 500;
        }

        .resource-link:hover {
            background: #eff6ff;
            border-color: #3b82f6;
            color: #2563eb;
            transform: translateY(-1px);
        }

        .resource-icon {
            margin-right: 12px;
            font-size: 18px;
        }

        /* Final CTA */
        .final-cta {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            color: white;
            padding: 40px;
            border-radius: 16px;
            text-align: center;
            margin-top: 40px;
            margin-bottom: 40px;
        }

        .cta-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .cta-description {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 24px;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-primary {
            background: #3b82f6;
            color: white;
        }

        .cta-primary:hover {
            background: #2563eb;
            transform: translateY(-1px);
        }

        .cta-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-secondary:hover {
            background: white;
            color: #1e293b;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .conclusion-title {
                font-size: 2rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 16px;
            }
            
            .takeaways-grid {
                grid-template-columns: 1fr;
            }
            
            .step-flow {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
        
   
        /* inline faq*/
        
        
        .inline-faq {
            background: var(--bg-secondary);
            padding: 2rem;
            border-radius: 12px;
            margin: 3rem 0;
            border: 1px solid var(--border-color);
        }

        .inline-faq h2 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .inline-faq p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .inline-faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .inline-faq-item {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary-color);
            box-shadow: var(--shadow-sm);
            transition: transform 0.2s;
        }

        .inline-faq-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .inline-faq-question {
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .inline-faq-answer {
            color: var(--text-secondary);
            font-size: 0.875rem;
            line-height: 1.6;
        }

        .question-number {
            background: var(--primary-color);
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 600;
            margin-right: 0.75rem;
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .inline-faq-grid {
                grid-template-columns: 1fr;
            }
        }
        
      
      
/* alert system*/

  .alerts-section {
            margin: 3rem 0;
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 2rem;
            text-align: center;
        }

        .alerts-grid {
            display: grid;
            gap: 1.5rem;
        }

        .alert {
            padding: 1rem 1.5rem;
            border-radius: 8px;
            display: flex;
            align-items: start;
            gap: 0.75rem;
            border-left: 4px solid;
            margin: 1rem 0;
        }

        .alert-icon {
            flex-shrink: 0;
            font-size: 1.25rem;
            margin-top: 0.1rem;
        }

        .alert-content {
            flex: 1;
        }

        .alert-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .alert-info {
            background: #eff6ff;
            border-left-color: var(--info-color);
            color: #1e40af;
        }

        .alert-info .alert-icon {
            color: var(--info-color);
        }

        .alert-success {
            background: #f0fdf4;
            border-left-color: var(--success-color);
            color: #166534;
        }

        .alert-success .alert-icon {
            color: var(--success-color);
        }

        .alert-warning {
            background: #fffbeb;
            border-left-color: var(--warning-color);
            color: #9a3412;
        }

        .alert-warning .alert-icon {
            color: var(--warning-color);
        }

        .alert-danger {
            background: #fef2f2;
            border-left-color: var(--danger-color);
            color: #991b1b;
        }

        .alert-danger .alert-icon {
            color: var(--danger-color);
        }

        .disclaimer-block {
            background: #f8fafc;
            border: 2px solid var(--border-color);
            border-radius: 12px;
            padding: 2rem;
            margin: 2rem 0;
            text-align: center;
        }

        .disclaimer-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .disclaimer-text {
            color: var(--text-secondary);
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* intoduction*/
        
           .intro-section {
            text-align: center;
            margin-bottom: 60px;
        }

        .intro-title {
            font-size: 2.5rem;
            color: #1a1a1a;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .intro-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .intro-description {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            border-left: 4px solid #4285f4;
            text-align: left;
            margin-bottom: 50px;
        }

        .intro-description p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #555;
            margin: 0;
        }

        .insights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .insight-card {
            background: white;
            border: 1px solid #e8eaed;
            border-left: 4px solid #00c851;
            border-radius: 8px;
            padding: 25px;
            transition: all 0.2s ease;
        }

        .insight-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .insight-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .insight-icon {
            width: 24px;
            height: 24px;
            background: #00c851;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        .insight-icon::after {
            content: '✓';
            color: white;
            font-weight: bold;
            font-size: 14px;
        }

        .insight-title {
            font-size: 1.2rem;
            color: #1a1a1a;
            font-weight: 600;
        }

        .insight-description {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .sequence-section {
            margin-top: 50px;
        }

        .sequence-title {
            font-size: 2rem;
            color: #1a1a1a;
            text-align: center;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .sequence-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .sequence-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .sequence-card {
            background: white;
            border: 1px solid #e8eaed;
            border-radius: 8px;
            padding: 25px;
            text-align: center;
            position: relative;
            transition: all 0.2s ease;
        }

        .sequence-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .sequence-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #4285f4;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
        }

        .sequence-card-title {
            font-size: 1.3rem;
            color: #1a1a1a;
            margin: 20px 0 15px 0;
            font-weight: 600;
        }

        .sequence-card-description {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        @media (max-width: 768px) {
            .container {
                padding: 40px 20px;
            }

            .intro-title {
                font-size: 2rem;
            }

            .insights-grid {
                grid-template-columns: 1fr;
            }

            .sequence-grid {
                grid-template-columns: 1fr;
            }

            .related-grid {
                grid-template-columns: 1fr;
            }
        }
 
 /* enhanced code blocks*/
 
   /* Enhanced Code Blocks */
        .code-container {
            background: #2d2d30;
            border: 1px solid #3e3e42;
            border-radius: 12px;
            margin: 2.5rem 0;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            position: relative;
        }
        
        .code-header {
            background: linear-gradient(135deg, #2d2d30 0%, #1e1e1e 100%);
            color: #ffffff;
            padding: 1rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #3e3e42;
        }
        
        .code-language-info {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .code-language-icon {
            width: 20px;
            height: 20px;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .code-language {
            font-weight: 600;
            color: #ffffff;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .code-actions {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }
        
        .code-copy-btn {
            background: #007bff;
            color: white;
            border: none;
            padding: 0.375rem 0.875rem;
            border-radius: 6px;
            font-size: 0.8rem;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .code-copy-btn:hover {
            background: #0056b3;
        }
        
        .code-copy-btn.copied {
            background: #28a745;
        }
        
        .code-line-count {
            font-size: 0.75rem;
            color: #999;
            font-weight: 400;
        }
        
        .code-content {
            position: relative;
            overflow-x: auto;
            background: #2d2d30;
        }
        
        .code-content pre {
            margin: 0;
            padding: 1.25rem;
            font-family: "JetBrains Mono", monospace;
            font-size: 0.875rem;
            line-height: 1.5;
            color: #ffffff;
            background: transparent;
            overflow-x: auto;
        }
        
        /* Override Prism styles for better theming */
        .code-content pre[class*="language-"] {
            background: transparent;
            margin: 0;
            padding: 1.25rem;
        }
        
        .code-content code[class*="language-"] {
            background: transparent;
            color: #f8f8f2;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .code-content pre {
                font-size: 0.8rem;
            }
        }
 
  /* Enhanced Products Section */
      /* Enhanced Products Section - Fixed for DOM Issues */
.products-section {
    margin: 4rem 0;
    width: 100%;
    clear: both;
}

.products-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 3rem;
}

/* Universal box-sizing fix */
.product-card-detailed,
.product-card-detailed *,
.product-card-detailed *::before,
.product-card-detailed *::after {
    box-sizing: border-box;
}

.product-card-detailed {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    width: 100%;
    display: block;
    position: relative;
    overflow: visible; /* Allow badge to overflow */
}

/* Best Seller Card - Fixed positioning */
.product-card-detailed.best-seller {
    background: linear-gradient(135deg, #e6f3ff 0%, #f0f8ff 100%);
    border: 2px solid #007bff;
    box-shadow: 0 6px 20px rgba(0,123,255,0.15);
    margin-top: 2rem; /* Extra space for badge */
}

/* Fixed Best Seller Badge positioning */
.best-seller-badge {
    position: absolute;
    top: -15px;
    right: 1rem;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
    z-index: 10;
    white-space: nowrap;
    transform: translateZ(0); /* Force hardware acceleration */
}

/* Font Awesome fallback */
.best-seller-badge::before {
    content: '★ ';
    margin-right: 0.3rem;
}

/* Use Font Awesome only if available */
@supports (font-family: 'Font Awesome 6 Free') {
    .best-seller-badge::before {
        content: '\f005 ';
        font-family: 'Font Awesome 6 Free', sans-serif;
        font-weight: 900;
        margin-right: 0.5rem;
    }
}

.product-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 0.5rem; /* Ensure space from badge */
}

.product-icon {
    width: 60px;
    height: 60px;
    background: -webkit-linear-gradient(135deg, #007bff, #0056b3);
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.5rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.product-title-section {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 200px;
}

.product-title-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.product-category {
    color: #6c757d;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0;
}

.product-description {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Fixed Grid with Flexbox Fallback */
.product-details-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.product-detail-card {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
}

/* CSS Grid enhancement for modern browsers */
@supports (display: grid) {
    .product-details-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .product-detail-card {
        min-width: auto;
        flex: unset;
    }
}

.detail-card-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.detail-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.pricing-card .detail-card-icon {
    background: #28a745;
}

.featured-card .detail-card-icon {
    background: #ffc107;
    color: #212529;
}

.pros-card .detail-card-icon {
    background: #17a2b8;
}

.cons-card .detail-card-icon {
    background: #dc3545;
}

.detail-card-title {
    font-weight: 600;
    color: #212529;
    font-size: 0.95rem;
    margin: 0;
}

.detail-card-content {
    color: #495057;
    line-height: 1.6;
}

.pricing-list,
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.plan-name {
    font-weight: 500;
    color: #212529;
}

.plan-price {
    font-weight: 600;
    color: #28a745;
}

.feature-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    color: #495057;
    font-size: 0.9rem;
}

.feature-list li i {
    font-size: 0.8rem;
    width: 12px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.pros-list li i {
    color: #28a745;
}

.cons-list li i {
    color: #dc3545;
}

.product-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.product-btn-primary,
.product-btn-secondary {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    will-change: transform; /* Performance optimization */
}

.product-btn-primary {
    background: -webkit-linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

.product-btn-primary:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,123,255,0.3);
    color: white;
    text-decoration: none;
}

.product-btn-secondary {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.product-btn-secondary:hover {
    background: #007bff;
    color: white;
    text-decoration: none;
}

.product-rating {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
}

.product-stars {
    color: #ffc107;
    font-size: 1rem;
}

.product-rating-text {
    font-weight: 600;
    color: #212529;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-card-detailed {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .product-card-detailed.best-seller {
        margin-top: 1.5rem;
    }
    
    .best-seller-badge {
        top: -12px;
        right: 0.5rem;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .product-header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .product-icon {
        -ms-flex-item-align: center;
        align-self: center;
    }
    
    .product-details-grid {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1rem;
    }
    
    @supports (display: grid) {
        .product-details-grid {
            grid-template-columns: 1fr;
        }
    }
    
    .product-detail-card {
        min-width: auto;
    }
    
    .product-actions {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        gap: 1rem;
    }
    
    .product-btn-primary,
    .product-btn-secondary {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }
    
    .product-rating {
        margin-left: 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .pricing-list {
        font-size: 0.9rem;
    }
    
    .feature-list {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .product-card-detailed {
        padding: 1rem;
    }
    
    .best-seller-badge {
        top: -10px;
        right: 0;
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .product-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .product-title-section h3 {
        font-size: 1.5rem;
    }
    
    .detail-card-content {
        font-size: 0.85rem;
    }
}

/* Performance optimizations */
.product-card-detailed {
    contain: layout style;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .product-btn-primary,
    .product-btn-secondary {
        -webkit-transition: none;
        transition: none;
    }
    
    .product-btn-primary:hover {
        -webkit-transform: none;
        transform: none;
    }
}
      /* tables designs - small full black header*/
      
        /* Reset and base styles for css-features-compatibility-matrix */
        .css-features-compatibility-matrix * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .css-features-compatibility-matrix {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #f8fafc;
            padding: 1rem;
            line-height: 1.6;
            min-height: 100vh;
            width: 100%;
        }

        .css-compatibility-header-wrapper {
            text-align: center;
            margin-bottom: 2rem;
        }

        .css-compatibility-primary-heading {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 0.5rem;
        }

        .css-compatibility-description-text {
            font-size: 0.9rem;
            color: #64748b;
        }

        /* Mobile-first table container with horizontal scroll */
        .css-features-horizontal-scroll-wrapper {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            background: transparent;
            position: relative;
        }

        .css-features-data-grid-table {
            width: 100%;
            min-width: 680px; /* Minimum width to maintain readability */
            border-collapse: separate;
            border-spacing: 0 0.5rem;
            font-size: 0.8rem;
            background: transparent;
        }

        /* Header styling with unique class names */
        .css-features-data-grid-table thead th {
            background: #1e293b;
            color: white;
            padding: 0.75rem 0.5rem;
            font-weight: 600;
            border-radius: 8px 8px 0 0;
            text-align: left;
            white-space: nowrap;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .css-features-data-grid-table thead th:first-child {
            border-radius: 8px 0 0 0;
        }

        .css-features-data-grid-table thead th:last-child {
            border-radius: 0 8px 0 0;
        }

        /* Body styling - Card-like rows with unique names */
        .css-features-data-grid-table tbody tr {
            background: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .css-features-data-grid-table tbody tr:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        .css-features-data-grid-table tbody td {
            padding: 0.75rem 0.5rem;
            border: none;
            background: transparent;
            white-space: nowrap;
        }

        .css-features-data-grid-table tbody td:first-child {
            border-radius: 8px 0 0 8px;
            font-weight: 600;
        }

        .css-features-data-grid-table tbody td:last-child {
            border-radius: 0 8px 8px 0;
        }

        /* Performance scores with very unique class names */
        .css-performance-score-indicator {
            font-weight: 700;
            font-size: 1rem;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            display: inline-block;
            min-width: 2rem;
            text-align: center;
        }

        .css-perf-score-excellent-rating { 
            background: #dcfce7;
            color: #059669; 
        }

        .css-perf-score-good-rating { 
            background: #dbeafe;
            color: #0891b2; 
        }

        .css-perf-score-average-rating { 
            background: #fef3c7;
            color: #d97706; 
        }

        .css-perf-score-poor-rating { 
            background: #fee2e2;
            color: #dc2626; 
        }

        /* Status badges with unique naming */
        .css-feature-recommendation-badge {
            padding: 0.25rem 0.75rem;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.025em;
            white-space: nowrap;
            display: inline-block;
        }

        .css-feature-status-recommended-use {
            background: #dcfce7;
            color: #166534;
        }

        .css-feature-status-caution-warning {
            background: #fef3c7;
            color: #92400e;
        }

        .css-feature-status-avoid-error {
            background: #fee2e2;
            color: #991b1b;
        }

        /* Percentage styling with unique classes */
        .css-browser-support-percentage {
            font-weight: 600;
            color: #1e293b;
        }

        .css-support-percentage-high {
            color: #059669;
        }

        .css-support-percentage-medium {
            color: #d97706;
        }

        .css-support-percentage-low {
            color: #dc2626;
        }

        /* Browser version styling with unique class */
        .css-browser-version-indicator {
            font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
            background: #f1f5f9;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-size: 0.75rem;
            color: #1e293b;
            font-weight: 500;
        }

        /* Touch indicators for mobile with unique naming */
        @media (max-width: 767px) {
            .css-features-horizontal-scroll-wrapper::before {
                content: "← Swipe to scroll →";
                display: block;
                text-align: center;
                font-size: 0.7rem;
                color: #64748b;
                padding: 0.5rem;
                background: #f1f5f9;
                border-radius: 8px 8px 0 0;
                margin-bottom: 0.5rem;
            }
        }

        /* Tablet styles */
        @media (min-width: 768px) {
            .css-features-compatibility-matrix {
                padding: 2rem;
            }

            .css-compatibility-primary-heading {
                font-size: 2rem;
            }

            .css-compatibility-description-text {
                font-size: 1rem;
            }

            .css-features-data-grid-table {
                font-size: 0.9rem;
                min-width: 900px;
            }

            .css-features-data-grid-table thead th,
            .css-features-data-grid-table tbody td {
                padding: 1rem 0.75rem;
            }

            .css-features-horizontal-scroll-wrapper::before {
                display: none;
            }
        }

        /* Desktop styles */
        @media (min-width: 1024px) {
            .css-features-data-grid-table {
                min-width: 100%;
                font-size: 0.95rem;
            }

            .css-features-horizontal-scroll-wrapper {
                overflow-x: visible;
            }
        }

        /* Large desktop */
        @media (min-width: 1280px) {
            .css-features-compatibility-matrix {
                max-width: 1200px;
                margin: 0 auto;
                padding: 3rem 2rem;
            }
        }

        /* Scroll indicator with unique class */
        .css-features-mobile-scroll-indicator {
            text-align: center;
            margin-top: 0.5rem;
            font-size: 0.75rem;
            color: #64748b;
            display: block;
        }

        @media (min-width: 768px) {
            .css-features-mobile-scroll-indicator {
                display: none;
            }
        }
      
      /* large tables blue comparison*/
      
    .cls-tools-comparison-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .cls-tools-comparison-wrapper {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #f8fafc;
            padding: 1rem;
            line-height: 1.6;
        }

        .cls-tools-comparison-container {
            max-width: 100%;
            margin: 0 auto;
        }

        .cls-tools-comparison-title {
            text-align: center;
            color: #1e293b;
            margin-bottom: 2rem;
            font-size: 1.75rem;
            font-weight: 700;
        }

        /* Mobile-first table wrapper with horizontal scroll */
        .cls-tools-table-wrapper {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            margin-bottom: 2rem;
            overflow: hidden;
            position: relative;
        }

        /* Horizontal scroll container */
        .cls-tools-scroll-container {
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
            scrollbar-width: thin;
            scrollbar-color: #cbd5e1 #f1f5f9;
        }

        /* Custom scrollbar for webkit browsers */
        .cls-tools-scroll-container::-webkit-scrollbar {
            height: 6px;
        }

        .cls-tools-scroll-container::-webkit-scrollbar-track {
            background: #f1f5f9;
        }

        .cls-tools-scroll-container::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 3px;
        }

        .cls-tools-scroll-container::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }

        /* Flexible grid-based table */
        .cls-tools-comparison-table {
            display: grid;
            grid-template-columns: 
                minmax(160px, 1fr) 
                minmax(140px, 1fr) 
                minmax(100px, 0.8fr) 
                minmax(180px, 1.2fr) 
                minmax(200px, 1.3fr) 
                minmax(100px, 0.8fr) 
                minmax(90px, 0.7fr) 
                minmax(180px, 1.2fr);
            min-width: 100%;
            gap: 0;
        }

        /* Header styling */
        .cls-tools-table-header {
            background: #1e40af;
            color: white;
            padding: 0.875rem 0.75rem;
            font-weight: 600;
            font-size: 0.875rem;
            border-right: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            text-align: left;
            line-height: 1.3;
        }

        .cls-tools-table-header:last-child {
            border-right: none;
        }

        /* Cell styling */
        .cls-tools-table-cell {
            padding: 0.875rem 0.75rem;
            border-bottom: 1px solid #e2e8f0;
            border-right: 1px solid #f1f5f9;
            background: white;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            min-height: 120px;
        }

        .cls-tools-table-cell:last-child {
            border-right: none;
        }

        .cls-tools-table-row:hover .cls-tools-table-cell {
            background: #f8fafc;
        }

        .cls-tools-table-row:last-child .cls-tools-table-cell {
            border-bottom: none;
        }

        /* Product name styling */
        .cls-tools-product-name {
            font-weight: 700;
            font-size: 1rem;
            color: #1e293b;
            margin-bottom: 0.375rem;
            line-height: 1.25;
        }

        .cls-tools-product-subtitle {
            font-size: 0.75rem;
            color: #64748b;
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

        /* Star ratings - responsive flex */
        .cls-tools-star-container {
            display: flex;
            gap: 2px;
            margin-bottom: 0.5rem;
            flex-wrap: wrap;
        }

        .cls-tools-star-icon {
            width: 12px;
            height: 12px;
            background: #d1d5db;
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
            flex-shrink: 0;
        }

        .cls-tools-star-filled {
            background: #fbbf24;
        }

        .cls-tools-star-half {
            background: linear-gradient(90deg, #fbbf24 50%, #d1d5db 50%);
        }

        .cls-tools-rating-text {
            font-weight: 600;
            font-size: 0.875rem;
            color: #64748b;
            margin-bottom: 0.25rem;
        }

        .cls-tools-review-count {
            font-size: 0.75rem;
            color: #64748b;
        }

        /* Pricing - flexible layout */
        .cls-tools-price-container {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .cls-tools-price-amount {
            font-weight: 700;
            font-size: 1.125rem;
            color: #1e40af;
        }

        .cls-tools-price-free {
            color: #059669;
        }

        .cls-tools-price-period {
            font-size: 0.75rem;
            color: #64748b;
        }

        /* Features - improved mobile layout */
        .cls-tools-features-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.375rem;
        }

        .cls-tools-feature-item {
            padding-left: 1rem;
            position: relative;
            font-size: 0.8125rem;
            color: #374151;
            line-height: 1.4;
        }

        .cls-tools-feature-item::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #1e40af;
            font-weight: 700;
        }

        /* Pros and cons - responsive layout */
        .cls-tools-pros-cons-wrapper {
            font-size: 0.8125rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .cls-tools-pros-cons-section {
            display: flex;
            flex-direction: column;
            gap: 0.375rem;
        }

        .cls-tools-pros-cons-label {
            font-weight: 600;
            color: #1e293b;
            font-size: 0.875rem;
        }

        .cls-tools-pros-cons-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .cls-tools-pros-cons-item {
            padding-left: 1rem;
            position: relative;
            line-height: 1.4;
        }

        .cls-tools-pros-list .cls-tools-pros-cons-item::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #059669;
            font-weight: 700;
        }

        .cls-tools-cons-list .cls-tools-pros-cons-item::before {
            content: "✗";
            position: absolute;
            left: 0;
            color: #dc2626;
            font-weight: 700;
        }

        .cls-tools-pros-list .cls-tools-pros-cons-item {
            color: #374151;
        }

        .cls-tools-cons-list .cls-tools-pros-cons-item {
            color: #6b7280;
        }

        /* Performance score - centered flex */
        .cls-tools-performance-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 0.25rem;
        }

        .cls-tools-perf-score {
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1;
        }

        .cls-tools-perf-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .cls-tools-perf-excellent .cls-tools-perf-score {
            color: #059669;
        }

        .cls-tools-perf-good .cls-tools-perf-score {
            color: #1e40af;
        }

        .cls-tools-perf-average .cls-tools-perf-score {
            color: #d97706;
        }

        .cls-tools-perf-fair .cls-tools-perf-score {
            color: #dc2626;
        }

        /* Support badges - responsive */
        .cls-tools-support-badge {
            padding: 0.375rem 0.5rem;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            text-align: center;
            display: inline-block;
            align-self: flex-start;
        }

        .cls-tools-support-premium {
            background: #dcfce7;
            color: #166534;
        }

        .cls-tools-support-standard {
            background: #dbeafe;
            color: #1e40af;
        }

        .cls-tools-support-basic {
            background: #fef3c7;
            color: #92400e;
        }

        .cls-tools-support-community {
            background: #f3f4f6;
            color: #374151;
        }

        /* Recommended text */
        .cls-tools-recommended-text {
            font-size: 0.875rem;
            color: #374151;
            line-height: 1.4;
        }

        /* Visit button - mobile friendly */
        .cls-tools-visit-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #1e40af;
            color: white;
            padding: 0.625rem 1rem;
            border-radius: 6px;
            text-decoration: none;
            font-size: 0.8125rem;
            font-weight: 600;
            margin-top: auto;
            margin-bottom: 0.25rem;
            transition: all 0.2s ease;
            min-height: 36px; /* Touch-friendly minimum */
            text-align: center;
        }

        .cls-tools-visit-button:hover {
            background: #1e3a8a;
            transform: translateY(-1px);
        }

        .cls-tools-visit-button:active {
            transform: translateY(0);
        }

        /* Tablet responsive adjustments */
        @media (min-width: 640px) {
            .cls-tools-comparison-wrapper {
                padding: 1.5rem;
            }

            .cls-tools-comparison-title {
                font-size: 2rem;
                margin-bottom: 2.5rem;
            }

            .cls-tools-comparison-table {
                width: 1200px;
            }

            .cls-tools-table-header,
            .cls-tools-table-cell {
                padding: 1rem 0.875rem;
            }

            .cls-tools-product-name {
                font-size: 1.0625rem;
            }

            .cls-tools-star-icon {
                width: 14px;
                height: 14px;
            }
        }

        /* Desktop responsive adjustments */
        @media (min-width: 1024px) {
            .cls-tools-comparison-wrapper {
                padding: 2rem;
            }

            .cls-tools-comparison-container {
                max-width: 1200px;
            }

            .cls-tools-comparison-title {
                font-size: 2.5rem;
                margin-bottom: 3rem;
            }

            .cls-tools-table-wrapper {
                border-radius: 12px;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            }

            .cls-tools-comparison-table {
                width: 1200px;
            }

            .cls-tools-table-header,
            .cls-tools-table-cell {
                padding: 1.25rem 1rem;
            }

            .cls-tools-table-header {
                font-size: 0.9375rem;
            }

            .cls-tools-product-name {
                font-size: 1.125rem;
            }

            .cls-tools-product-subtitle {
                font-size: 0.8125rem;
            }

            .cls-tools-pros-cons-wrapper {
                font-size: 0.875rem;
            }

            .cls-tools-feature-item {
                font-size: 0.875rem;
            }

            .cls-tools-recommended-text {
                font-size: 0.9375rem;
            }

            /* Hide horizontal scroll on desktop when content fits */
            .cls-tools-scroll-container {
                overflow-x: visible;
            }
        }

        /* Large desktop optimizations */
        @media (min-width: 1440px) {
            .cls-tools-comparison-table {
                width: 1200px;
            }
        }

        /* Touch device optimizations */
        @media (hover: none) and (pointer: coarse) {
            .cls-tools-visit-button {
                min-height: 44px; /* iOS recommended touch target */
                padding: 0.75rem 1.25rem;
            }

            .cls-tools-star-icon {
                width: 16px;
                height: 16px;
            }
        }

        /* High DPI display optimizations */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .cls-tools-table-wrapper {
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            }
        }

        /* Dark mode support */
        @media (prefers-color-scheme: dark) {
            .cls-tools-comparison-wrapper {
                background: #0f172a;
                color: #e2e8f0;
            }

            .cls-tools-comparison-title {
                color: #f1f5f9;
            }

            .cls-tools-table-wrapper {
                background: #1e293b;
                border-color: #334155;
            }

            .cls-tools-table-cell {
                background: #1e293b;
                border-color: #334155;
            }

            .cls-tools-table-row:hover .cls-tools-table-cell {
                background: #334155;
            }

            .cls-tools-product-name {
                color: #f1f5f9;
            }
        }
        
        /* 6 cards section*/
        
        /* YouTube Services Section - Corporate Blue Variation */
/* Reset and Base Styles */
.youtube-services-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main Section */
.youtube-services-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    padding: 60px 0;
    color: #1f2937;
}

/* Container */
.youtube-services-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Title */
.youtube-services-section .section-title {
    text-align: center;
    color: #1e3a8a;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: -0.025em;
}

/* Services Grid */
.youtube-services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

/* Service Card */
.youtube-services-section .service-card {
    padding: 35px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    cursor: pointer;
}

.youtube-services-section .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30,58,138,0.08);
    border-color: #c7d2fe;
}

/* Card Icon */
.youtube-services-section .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    background: #eef2ff;
    color: #3730a3;
    transition: all 0.3s ease;
}

.youtube-services-section .service-card:hover .card-icon {
    transform: scale(1.1);
    background: #e0e7ff;
}

/* Card Title */
.youtube-services-section .card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111827;
    letter-spacing: -0.025em;
    transition: color 0.3s ease;
}

.youtube-services-section .service-card:hover .card-title {
    color: #1e3a8a;
}

/* Card Description */
.youtube-services-section .card-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.youtube-services-section .service-card:hover .card-description {
    color: #374151;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .youtube-services-section .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .youtube-services-section {
        padding: 60px 0;
    }
    
    .youtube-services-section .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .youtube-services-section .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .youtube-services-section .service-card {
        padding: 28px;
    }
    
    .youtube-services-section .card-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .youtube-services-section {
        padding: 40px 0;
    }
    
    .youtube-services-section .container {
        padding: 0 15px;
    }
    
    .youtube-services-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }
    
    .youtube-services-section .service-card {
        padding: 24px;
    }
    
    .youtube-services-section .card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}


/*paragraph main content section - LIGHTNING FAST OPTIMIZED*/

/* Performance optimizations at the top */
.blog-container,
.blog-card,
.paragraph,
.section-heading {
    will-change: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Container - Mobile First - FIXED PADDING CONFLICT */
.blog-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    padding: 1rem;
    padding-top: 0; /* FIXED: Changed from 20px to 0 to avoid body padding conflict */
    contain: layout style;
}

/* Main Blog Card - Mobile First - Optimized */
.blog-card {
    flex: 1;
    width: 100%;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    border: 1px solid #e1e8ed;
    margin-bottom: 1rem;
    position: relative;
}

/* Typography - Mobile First - Performance Optimized */
.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-display: swap;
    text-rendering: optimizeLegibility;
}

.blog-meta {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.paragraph {
    font-size: 1rem;
    line-height: 1.75;
    color: #2d3748;
    margin-bottom: 1.25rem;
    text-align: left;
    text-rendering: optimizeSpeed; /* Faster rendering for body text */
}

.section-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
    font-display: swap;
}

.subsection-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin: 1.5rem 0 0.75rem 0;
    font-display: swap;
}

/* Green Checkmark Lists - Optimized Flexbox */
.check-list {
    list-style: none;
    margin: 1.25rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    contain: layout;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #2d3748;
}

.check-list li::before {
    content: "✓";
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    background: #48bb78;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    margin-top: 0.125rem;
    /* Performance: Reduce repaints */
    transform: translateZ(0);
}

/* Numbered Lists - Optimized */
.numbered-list {
    list-style: none;
    counter-reset: item-counter;
    margin: 1.25rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    contain: layout;
}

.numbered-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #2d3748;
    counter-increment: item-counter;
}

.numbered-list li::before {
    content: counter(item-counter);
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    background: #4299e1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    margin-top: 0.125rem;
    transform: translateZ(0);
}

/* Highlight Box - Optimized */
.highlight-box {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    border: 1px solid #9ae6b4;
    border-left: 4px solid #48bb78;
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    contain: layout style;
}

.highlight-box .title {
    font-weight: 600;
    color: #22543d;
    font-size: 1rem;
}

.highlight-box .content {
    color: #2f855a;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Code Snippets - Optimized for Performance */
.code-snippet {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 1rem;
    margin: 1.25rem 0;
    font-family: 'Monaco', 'Consolas', 'Courier New', monospace;
    font-size: 0.8rem;
    color: #2d3748;
    overflow-x: auto;
    word-wrap: break-word;
    /* Performance optimizations */
    contain: size layout style;
    font-display: swap;
    -webkit-overflow-scrolling: touch;
}

/* Warning Box - Optimized */
.warning-box {
    background: linear-gradient(135deg, #fffbf0 0%, #fef5e7 100%);
    border: 1px solid #f6ad55;
    border-left: 4px solid #ed8936;
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    contain: layout style;
}

.warning-box .title {
    font-weight: 600;
    color: #c05621;
    font-size: 1rem;
}

.warning-box .content {
    color: #dd6b20;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Table Styles - Performance Optimized */
.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    -webkit-overflow-scrolling: touch;
    contain: layout style;
}

.performance-table {
    width: 100%;
    min-width: 300px;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    table-layout: fixed; /* Better performance */
}

.performance-table th {
    background: #4a5568;
    color: white;
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 10;
}

.performance-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.85rem;
    color: #2d3748;
    word-wrap: break-word;
    max-width: 0;
}

.performance-table tr:hover {
    background: #f7fafc;
}

/* Bold Text - Simplified */
.bold {
    font-weight: 600;
    color: #1a202c;
}

/* Grid Layout - Optimized */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
    contain: layout;
}

/* Flexbox utility classes - Optimized */
.flex-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    contain: layout;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tablet Breakpoint (768px and up) - FIXED PADDING */
@media (min-width: 768px) {
    .blog-container {
        padding: 1.5rem;
        padding-top: 0; /* FIXED: Keep 0 to avoid conflict */
    }
    
    .blog-card {
        padding: 2rem;
    }
    
    .blog-title {
        font-size: 1.875rem;
    }
    
    .blog-meta {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        padding-bottom: 1.25rem;
    }
    
    .paragraph {
        font-size: 1.05rem;
        margin-bottom: 1.375rem;
    }
    
    .section-heading {
        font-size: 1.375rem;
        margin: 2.25rem 0 1.125rem 0;
    }
    
    .subsection-heading {
        font-size: 1.2rem;
        margin: 1.75rem 0 1rem 0;
    }
    
    .check-list,
    .numbered-list {
        margin: 1.375rem 0;
        gap: 0.875rem;
    }
    
    .check-list li,
    .numbered-list li {
        font-size: 1.025rem;
        gap: 1rem;
    }
    
    .check-list li::before,
    .numbered-list li::before {
        width: 1.375rem;
        height: 1.375rem;
        font-size: 0.75rem;
    }
    
    .highlight-box,
    .warning-box {
        padding: 1.375rem;
        margin: 1.75rem 0;
        gap: 0.625rem;
    }
    
    .highlight-box .title,
    .warning-box .title {
        font-size: 1.05rem;
    }
    
    .highlight-box .content,
    .warning-box .content {
        font-size: 1rem;
    }
    
    .code-snippet {
        padding: 1.125rem;
        margin: 1.375rem 0;
        font-size: 0.85rem;
    }
    
    .performance-table th,
    .performance-table td {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    .content-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.75rem;
        margin: 1.75rem 0;
    }
    
    .flex-row {
        flex-direction: row;
        gap: 1.25rem;
    }
}

/* Desktop Breakpoint (1024px and up) - FIXED PADDING */
@media (min-width: 1024px) {
    .blog-container {
        padding: 2rem;
        padding-top: 0; /* FIXED: Keep 0 */
        align-items: center;
    }
    
    .blog-card {
        max-width: 1200px;
        padding: 2.5rem;
    }
    
    .blog-title {
        font-size: 2.125rem;
    }
    
    .paragraph {
        font-size: 1.075rem;
        text-align: justify;
    }
    
    .section-heading {
        font-size: 1.4rem;
    }
    
    .check-list,
    .numbered-list {
        margin: 1.5rem 0;
    }
    
    .check-list li,
    .numbered-list li {
        font-size: 1.05rem;
    }
    
    .code-snippet {
        font-size: 0.875rem;
    }
    
    .performance-table th,
    .performance-table td {
        font-size: 0.925rem;
    }
}

/* Large Desktop Breakpoint (1200px and up) - FIXED PADDING */
@media (min-width: 1200px) {
    .blog-container {
        padding: 3rem 2rem;
        padding-top: 0; /* FIXED: Keep 0 */
    }
    
    .blog-card {
        padding: 3rem;
    }
    
    .blog-title {
        font-size: 2.25rem;
    }
    
    .blog-meta {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
        padding-bottom: 1.5rem;
    }
    
    .paragraph {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
        margin: 2.5rem 0 1.25rem 0;
    }
    
    .subsection-heading {
        font-size: 1.25rem;
        margin: 2rem 0 1rem 0;
    }
    
    .check-list,
    .numbered-list {
        margin: 1.5rem 0;
        gap: 0.875rem;
    }
    
    .check-list li,
    .numbered-list li {
        font-size: 1.05rem;
        gap: 1.125rem;
    }
    
    .check-list li::before,
    .numbered-list li::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.75rem;
    }
    
    .highlight-box,
    .warning-box {
        padding: 1.5rem;
        margin: 2rem 0;
        gap: 0.75rem;
    }
    
    .highlight-box .title,
    .warning-box .title {
        font-size: 1.1rem;
    }
    
    .highlight-box .content,
    .warning-box .content {
        font-size: 1rem;
    }
    
    .code-snippet {
        padding: 1.25rem;
        margin: 1.5rem 0;
        font-size: 0.9rem;
    }
    
    .table-container {
        margin: 2rem 0;
    }
    
    .performance-table th,
    .performance-table td {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .content-grid {
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .flex-row {
        gap: 1.5rem;
    }
}

/* Extra Large Desktop (1440px and up) - FIXED PADDING */
@media (min-width: 1440px) {
    .blog-container {
        padding: 4rem 3rem;
        padding-top: 0; /* FIXED: Keep 0 */
    }
    
    .content-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}
/* Frequently Asked Questions*/

    .lcpfaq-container {
           --primary-blue: #2563eb;
            --secondary-blue: #1d4ed8;
            --accent-blue: #3b82f6;
            --light-blue: #dbeafe;
            --extra-light-blue: #eff6ff;
            --blue-text: #1e40af;
            --white: #ffffff;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --border-blue: #bfdbfe;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .lcpfaq-section {
            margin: 3rem 0;
        }
        
        .lcpfaq-main-title {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .lcpfaq-wrapper {
            margin-top: 2rem;
        }
        
        .lcpfaq-question-block {
            background: var(--white);
            border: 1px solid var(--border-blue);
            border-radius: 8px;
            margin-bottom: 1rem;
            overflow: hidden;
        }
        
        .lcpfaq-question-header {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--extra-light-blue);
            font-weight: 600;
            transition: background-color 0.3s ease;
        }
        
        .lcpfaq-question-header:hover {
            background: #e2e8f0;
        }
        
        .lcpfaq-expand-arrow {
            transition: transform 0.3s ease;
        }
        
        .lcpfaq-question-block.open .lcpfaq-expand-arrow {
            transform: rotate(180deg);
        }
        
        .lcpfaq-answer-content {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .lcpfaq-question-block.open .lcpfaq-answer-content {
            max-height: 300px;
            padding: 1.5rem;
        }
        
        .lcpfaq-load-more-btn {
            background: var(--primary-blue);
            color: var(--white);
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            margin: 2rem auto;
            display: block;
            transition: background-color 0.3s ease;
        }
        
        .lcpfaq-load-more-btn:hover {
            background: var(--secondary-blue);
        }
        
        .lcpfaq-question-block.hidden {
            display: none;
        }
        
        .lcpfaq-question-text {
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .lcpfaq-answer-text {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--text-secondary);
        }
        
        /* Image optimization */
        
          
        .imgopt-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
             --primary-blue: #2563eb;
            --secondary-blue: #1d4ed8;
            --accent-blue: #3b82f6;
            --light-blue: #dbeafe;
            --extra-light-blue: #eff6ff;
            --blue-text: #1e40af;
            --white: #ffffff;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --border-blue: #bfdbfe;
            --success-green: #16a34a;
            --success-light: #dcfce7;
            --warning-orange: #f59e0b;
            --warning-light: #fef3c7;
        }
        
        .imgopt-header {
            background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
            border: 3px solid var(--primary-blue);
            border-radius: 24px;
            padding: 4rem 3rem;
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
        }
        
        .imgopt-header::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
            transform: translate(30%, -30%);
        }
        
        .imgopt-badge {
            display: inline-block;
            background: var(--primary-blue);
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }
        
        .imgopt-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--primary-blue);
            position: relative;
            z-index: 1;
        }
        
        .imgopt-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 800px;
            position: relative;
            z-index: 1;
        }
        
        .imgopt-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            position: relative;
            z-index: 1;
        }
        
        .imgopt-stat-card {
            background: var(--white);
            border: 2px solid var(--border-blue);
            padding: 1.5rem;
            border-radius: 16px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .imgopt-stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-blue);
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
        }
        
        .imgopt-stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            display: block;
            margin-bottom: 0.5rem;
            color: var(--primary-blue);
        }
        
        .imgopt-stat-label {
            font-size: 0.95rem;
            color: var(--text-secondary);
            font-weight: 500;
        }
        
        .imgopt-techniques-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        
        .imgopt-technique-card {
            background: var(--white);
            border: 2px solid var(--border-blue);
            border-radius: 20px;
            padding: 2.5rem;
            position: relative;
            transition: all 0.4s ease;
        }
        
        .imgopt-technique-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(37, 99, 235, 0.2);
            border-color: var(--primary-blue);
        }
        
        .imgopt-technique-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .imgopt-technique-icon {
            width: 60px;
            height: 60px;
            /*background: var(--primary-blue);*/
            color: var(--white);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.4rem;
        }
        
        .imgopt-technique-title {
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.2;
        }
        
       .imgopt-impact-score {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 2;
}
        
        .imgopt-technique-description {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
            font-size: 1.05rem;
        }
        
        .imgopt-before-after {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 1rem;
            align-items: center;
            margin: 2rem 0;
            background: var(--extra-light-blue);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid var(--border-blue);
        }
        
        .imgopt-comparison-side {
            text-align: center;
        }
        
        .imgopt-comparison-arrow {
            font-size: 2rem;
            color: var(--primary-blue);
            font-weight: bold;
        }
        
        .imgopt-comparison-label {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-secondary);
        }
        
        .imgopt-comparison-value {
            font-size: 1.4rem;
            font-weight: 700;
        }
        
        .imgopt-comparison-value.before {
            color: #dc2626;
        }
        
        .imgopt-comparison-value.after {
            color: var(--success-green);
        }
        
        .imgopt-comparison-improvement {
            font-size: 0.8rem;
            color: var(--success-green);
            font-weight: 600;
            margin-top: 0.25rem;
        }
        
        .imgopt-implementation-steps {
            background: var(--success-light);
            border: 1px solid #bbf7d0;
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
        }
        
        .imgopt-steps-title {
            font-weight: 600;
            color: var(--success-green);
            margin-bottom: 1rem;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .imgopt-steps-list {
            list-style: none;
        }
        
        .imgopt-step-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            padding: 0.75rem;
            background: var(--white);
            border-radius: 8px;
            border-left: 3px solid var(--success-green);
        }
        
        .imgopt-step-number {
            background: var(--success-green);
            color: var(--white);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 600;
            flex-shrink: 0;
        }
        
        .imgopt-step-text {
            font-size: 0.95rem;
            line-height: 1.4;
            color: var(--text-primary);
        }
        
        .imgopt-code-snippet {
            background: #1e293b;
            color: #e2e8f0;
            padding: 1.5rem;
            border-radius: 8px;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            overflow-x: auto;
            margin: 1rem 0;
            border: 1px solid var(--border-blue);
        }
        
        .imgopt-warning-box {
            background: var(--warning-light);
            border: 2px solid var(--warning-orange);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .imgopt-warning-title {
            font-weight: 600;
            color: #92400e;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.1rem;
        }
        
        .imgopt-warning-text {
            color: #92400e;
            font-size: 0.95rem;
            line-height: 1.4;
        }
        
        .imgopt-tools-section {
            background: var(--white);
            border: 2px solid var(--border-blue);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            position: relative;
        }
        
        .imgopt-tools-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue), var(--primary-blue));
        }
        
        .imgopt-tools-title {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        .imgopt-tools-subtitle {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }
        
        .imgopt-tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .imgopt-tool-card {
            background: var(--extra-light-blue);
            border: 1px solid var(--border-blue);
            padding: 2rem;
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        
        .imgopt-tool-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-blue);
            background: var(--light-blue);
        }
        
        .imgopt-tool-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }
        
        .imgopt-tool-description {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.4;
        }
        
        .imgopt-tool-type {
            display: inline-block;
            background: var(--primary-blue);
            color: var(--white);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 1rem;
        }
        
        @media (max-width: 768px) {
            .imgopt-container {
                padding: 2rem 1rem;
            }
            
            .imgopt-header {
                padding: 3rem 2rem;
            }
            
            .imgopt-title {
                font-size: 2.5rem;
            }
            
            .imgopt-techniques-grid {
                grid-template-columns: 1fr;
            }
            
            .imgopt-technique-card {
                padding: 2rem;
            }
            
            .imgopt-before-after {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .imgopt-comparison-arrow {
                transform: rotate(90deg);
                margin: 1rem 0;
            }
        }
        
        /*Unique sections Content*/
        

        
        /* Global container for all sections */
  .main-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
   
    max-width: none;
    overflow-x: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    
    --primary-blue: #2563eb;
    --secondary-blue: #1d4ed8;
    --accent-blue: #3b82f6;
    --light-blue: #dbeafe;
    --extra-light-blue: #eff6ff;
    --blue-text: #1e40af;
    --white: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-blue: #bfdbfe;
}


/* Your existing main-container - already perfect */
.main-container {
    width: 100%;
     padding: 2rem 0rem;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Add this for desktop constraint */
@media (min-width: 769px) {
    .main-container {
        max-width: 1200px;
        margin: 0 auto;
    }
}
        
        /* =================================================================
           SECTION 6: FONT LOADING - TIMELINE DESIGN
           ================================================================= */
     .fontload-timeline-container {
    width: 100%;
    margin: 2rem auto;
    padding: 1rem;
    background: var(--extra-light-blue);
}

.fontload-timeline-container h2 {
    color: #ffffff;
}
        
        .fontload-timeline-header {
            text-align: center;
            margin-bottom: 2rem;
            padding: 2rem 1rem;
            background: var(--primary-blue);
            color: var(--white);
            border-radius: 50px;
        }
        
        .fontload-timeline-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .fontload-timeline-wrapper {
            position: relative;
            padding-left: 2rem;
        }
        
        .fontload-timeline-line {
            position: absolute;
            left: 1rem;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary-blue);
        }
        
        .fontload-timeline-item {
            position: relative;
            margin-bottom: 2rem;
            background: var(--white);
            padding: 1.5rem;
            border-radius: 0 20px 20px 0;
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
        }
        
        .fontload-timeline-item::before {
            content: '';
            position: absolute;
            left: -2.5rem;
            top: 2rem;
            width: 20px;
            height: 20px;
            background: var(--primary-blue);
            border-radius: 50%;
            border: 4px solid var(--white);
        }
        
        .fontload-step-number {
            position: absolute;
            left: -3.2rem;
            top: 1.5rem;
            width: 35px;
            height: 35px;
            background: var(--primary-blue);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        .fontload-step-title {
            font-size: 1.2rem;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }
        

        
        /* =================================================================
           SECTION 8: PRELOAD - HEXAGON GRID DESIGN
           ================================================================= */
        .preload-hexagon-container {
            width: 100%;
            margin: 2rem auto;
            padding: 1rem;
            background: var(--white);
        }
         .preload-hexagon-container h2 {
    color: #ffffff;
}
        
        .preload-hexagon-header {
            text-align: center;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            color: var(--white);
            padding: 2rem 1rem;
            clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
        }
        
        .preload-hexagon-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .preload-hexagon-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            padding: 1rem;
        }
        
        .preload-hexagon-item {
            background: var(--extra-light-blue);
            padding: 2rem 1rem;
            position: relative;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            transition: all 0.3s ease;
        }
        
        .preload-hexagon-item:hover {
            transform: scale(1.1);
            background: var(--light-blue);
        }
        
        .preload-hexagon-content {
            text-align: center;
            padding: 1rem;
        }
        
        .preload-hexagon-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }
        
      /* =================================================================
           SECTION 9: THIRD PARTY - SPLIT SCREEN DESIGN (TWO COLUMNS)
           ================================================================= */
.thirdparty-split-container {
    width: 100%;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Changed from 1fr to 1fr 1fr for two equal columns */
    gap: 0;
    min-height: 500px; /* Optional: ensures both columns have minimum height */
}

.thirdparty-split-left {
    background: var(--primary-blue);
    color: var(--white);
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thirdparty-split-left h2 {
    color: #ffffff;
}

.thirdparty-split-right {
    background: var(--white);
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thirdparty-split-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.thirdparty-problem-list {
    list-style: none;
}

.thirdparty-problem-item {
    padding: 1rem;
    margin: 1rem 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--white);
}

.thirdparty-solution-steps {
    counter-reset: step-counter;
}

.thirdparty-solution-step {
    counter-increment: step-counter;
    padding: 1.5rem 1rem 1rem 2rem;
    margin: 1rem 0;
    background: var(--extra-light-blue);
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
    position: relative;
}

.thirdparty-solution-step::before {
    content: counter(step-counter);
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-blue);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .thirdparty-split-container {
        grid-template-columns: 1fr; /* Stack columns on mobile */
    }
}
        
        /* =================================================================
           SECTION 10: LAZY LOADING - ACCORDION DESIGN
           ================================================================= */
        .lazy-accordion-container {
            width: 100%;
            margin: 2rem auto;
            padding: 1rem;
            background: var(--extra-light-blue);
            border-radius: 30px;
        }
        
        .lazy-accordion-header {
            text-align: center;
            margin-bottom: 2rem;
            padding: 2rem 1rem;
            background: var(--white);
            border-radius: 20px;
            border: 2px solid var(--primary-blue);
        }
        
        .lazy-accordion-title {
            font-size: 1.8rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }
        
        .lazy-accordion-item {
            margin-bottom: 1rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
        }
        
        .lazy-accordion-button {
            width: 100%;
            background: var(--primary-blue);
            color: var(--white);
            border: none;
            padding: 1.5rem 1rem;
            text-align: left;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }
        
        .lazy-accordion-button:hover {
            background: var(--secondary-blue);
        }
        
        .lazy-accordion-content {
            background: var(--white);
            padding: 1.5rem 1rem;
            display: none;
        }
        
        .lazy-accordion-item.active .lazy-accordion-content {
            display: block;
        }
        
       .lazy-accordion-arrow {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    font-size: 0.7rem;
}
        
        .lazy-accordion-item.active .lazy-accordion-arrow {
            transform: rotate(180deg);
        }
        
        /* =================================================================
           SECTION 11: MONITORING - DASHBOARD DESIGN
           ================================================================= */
        .monitor-dashboard-container {
            width: 100%;
            margin: 2rem auto;
            padding: 1rem;
            background: var(--text-primary);
            color: var(--white);
            border-radius: 20px;
        }
        
          
               .monitor-dashboard-container h2 {
    color: #ffffff;
}
        
        .monitor-dashboard-header {
            text-align: center;
            margin-bottom: 2rem;
            padding: 2rem 1rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
            border-radius: 15px;
        }
        
        .monitor-dashboard-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .monitor-dashboard-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1.5rem;
        }
        
        .monitor-dashboard-widget {
            background: var(--white);
            color: var(--text-primary);
            padding: 1.5rem 1rem;
            border-radius: 15px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .monitor-dashboard-widget::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-blue);
        }
        
        .monitor-metric-number {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }
        
        .monitor-metric-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        
        /* ===== UNIFIED CHECK ICON STYLES ===== */

/* Reset all existing checkmark styles */
.check-icon::before,
.check-icon::after,
.check-list-item::before,
.check-list-item::after {
    content: none !important;
}

/* Base check icon styling */
.check-icon {
    color: #4CAF50 !important;
    font-size: 16px !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
    width: 20px !important;
    height: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
}

.check-icon i {
    color: #4CAF50 !important;
    font-size: 16px !important;
}

/* Check item layout */
.check-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 8px 0 !important;
    margin: 8px 0 !important;
}

.check-text {
    flex: 1 !important;
    line-height: 1.5 !important;
}

/* Check list styling */
.check-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 !important;
}

.check-list-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    list-style: none !important;
    padding-left: 0 !important;
}

.check-list-item:last-child {
    border-bottom: none !important;
}

.check-list-item .check-icon {
    color: #4CAF50 !important;
    font-size: 16px !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}

.check-list-item .check-text {
    flex: 1 !important;
    line-height: 1.5 !important;
}

/* ===== INTERACTIVE CHECKLIST STYLES ===== */

/* Interactive checkbox for prevention checklist */
.checklist-checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    box-sizing: border-box;
}

.checklist-checkbox.checked {
    background: #4CAF50;
    border-color: #4CAF50;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.checklist-text {
    flex: 1;
    line-height: 1.5;
}

.checklist-item:hover {
    background: #f5f5f5;
}

/* ===== INSIGHT ICONS ===== */

/* Insight card icons */
.insight-icon {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    width: auto !important;
    height: auto !important;
}

.insight-icon i {
    font-size: 24px;
    color: #4CAF50;
}

/* ===== SYMPTOM AND FEATURE ITEMS ===== */

/* Symptom items in common causes */
.symptom-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 8px 0 !important;
    margin: 8px 0 !important;
}

.symptom-item .check-icon {
    color: #4CAF50 !important;
    font-size: 16px !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
    background: none !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
}

/* Feature items */
.feature-item .check-icon,
.benefit-item .check-icon {
    color: #4CAF50 !important;
    font-size: 16px !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
    background: none !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
}

/* ===== LIST TITLES ===== */

.checklist-title,
.numbered-list-title {
    font-size: 1.2em;
    font-weight: 600;
    margin: 20px 0 10px 0;
    color: #333;
}

/* ===== NUMBERED LISTS ===== */

.numbered-list {
    padding-left: 20px;
    margin: 20px 0;
}

.numbered-list-item {
    margin: 8px 0;
    line-height: 1.5;
}

/* ===== SECTION HEADINGS ===== */

.section-heading {
    font-size: 1.8em;
    font-weight: 700;
    margin: 30px 0 15px 0;
    color: #222;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 8px;
}

.subsection-heading {
    font-size: 1.4em;
    font-weight: 600;
    margin: 25px 0 12px 0;
    color: #333;
}

/* ===== HIGHLIGHT AND WARNING BOXES ===== */

.highlight-box,
.warning-box {
    display: flex;
    gap: 12px;
    padding: 16px;
    margin: 20px 0;
    border-radius: 8px;
    border-left: 4px solid;
}

.highlight-box {
    background: #f8f9ff;
    border-left-color: #4CAF50;
}

.warning-box {
    background: #fff8f0;
    border-left-color: #ff9800;
}

.highlight-title,
.warning-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.highlight-icon,
.warning-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.highlight-content,
.warning-content {
    flex: 1;
}

/*tool icons*/


/* Colorful tool icons - supports unlimited cards with repeating colors */
.tool-card:nth-child(8n+1) .tool-icon i { color: #3b82f6; } /* Blue */
.tool-card:nth-child(8n+2) .tool-icon i { color: #10b981; } /* Green */
.tool-card:nth-child(8n+3) .tool-icon i { color: #f59e0b; } /* Orange */
.tool-card:nth-child(8n+4) .tool-icon i { color: #ef4444; } /* Red */
.tool-card:nth-child(8n+5) .tool-icon i { color: #8b5cf6; } /* Purple */
.tool-card:nth-child(8n+6) .tool-icon i { color: #06b6d4; } /* Cyan */
.tool-card:nth-child(8n+7) .tool-icon i { color: #ec4899; } /* Pink */
.tool-card:nth-child(8n+8) .tool-icon i { color: #14b8a6; } /* Teal */

/* Keep base styles */
.tool-icon i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 1.5rem;
}

/* Alternative: Random-looking colors using prime numbers for variety */
.tool-card:nth-child(11n+1) .tool-icon i { color: #2563eb; }
.tool-card:nth-child(11n+2) .tool-icon i { color: #dc2626; }
.tool-card:nth-child(11n+3) .tool-icon i { color: #16a34a; }
.tool-card:nth-child(11n+4) .tool-icon i { color: #9333ea; }
.tool-card:nth-child(11n+5) .tool-icon i { color: #ea580c; }
.tool-card:nth-child(11n+6) .tool-icon i { color: #0891b2; }
.tool-card:nth-child(11n+7) .tool-icon i { color: #c026d3; }
.tool-card:nth-child(11n+8) .tool-icon i { color: #65a30d; }
.tool-card:nth-child(11n+9) .tool-icon i { color: #e11d48; }
.tool-card:nth-child(11n+10) .tool-icon i { color: #0ea5e9; }
.tool-card:nth-child(11n+11) .tool-icon i { color: #f97316; }

/* Clean check icons for tools section */
.feature-item {
    display: flex;
    align-items: flex-start;
    margin: 8px 0;
    list-style: none;
}

.feature-item i {
    color: #22c55e !important;
    font-size: 14px !important;
    margin-right: 8px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

/* Remove any background or border */
.feature-check {
    background: none !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
}

/*fix close button for info*/

/* Alert Close Button Styling */
.alert-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #666;
    padding: 4px;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.alert-close:hover {
    opacity: 1;
    color: #333;
}

.alert-close i {
    font-size: 14px;
}

/* Make sure alerts have relative positioning for absolute close button */
.alert {
    position: relative;
    padding-right: 45px; /* Add space for close button */
}

/* Alert close button for different alert types */
.alert-warning .alert-close {
    color: #856404;
}

.alert-success .alert-close {
    color: #155724;
}

.alert-info .alert-close {
    color: #0c5460;
}

.alert-error .alert-close {
    color: #721c24;
}

/*big table coloring badges*/

/* Base support badge styling */
.cls-tools-support-badge {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75em;
    font-weight: bold;
    text-align: center;
    color: black;
    display: inline-block;
}

/* Specific badge colors */
.badge-community {
    background-color: #2196F3; /* Blue */
}

.badge-standard {
    background-color: #4CAF50; /* Green */
}

.badge-premium {
    background-color: #FF9800; /* Orange */
}

.badge-enterprise {
    background-color: #9C27B0; /* Purple */
}

.badge-email {
    background-color: #607D8B; /* Blue Grey */
}

.badge-24-7 {
    background-color: #F44336; /* Red */
}

/*Common Causes and Analysis*/

.container-common-causes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.container-common-causes .card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.container-common-causes .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.container-common-causes .card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.container-common-causes .card-title i {
    font-size: 1.3rem;
}

.container-common-causes .percentage {
    background: #dc2626;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
}

.symptom-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 10px 0;
}

.symptom-item i {
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.indicators {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 6px;
    margin: 15px 0;
}

.indicators-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.indicators-text {
    color: #666;
    font-size: 0.95rem;
}

.symptoms-title {
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 10px;
}

/*Features Comparison table width responsive*/

/* Fix word wrapping for ALL cells in compatibility matrix */
.css-features-horizontal-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
}

.css-features-data-grid-table {
    min-width: 1000px;
    width: 100%;
    table-layout: fixed;
}

/* Apply word wrap to ALL cells without exception */
.css-features-data-grid-table th,
.css-features-data-grid-table td,
.css-features-data-grid-table td *,
.css-features-data-grid-table th * {
    word-wrap: break-word !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    max-width: 100% !important;
}

/* Column widths */
.css-features-data-grid-table th:nth-child(1),
.css-features-data-grid-table td:nth-child(1) { width: 20%; }

.css-features-data-grid-table th:nth-child(2),
.css-features-data-grid-table td:nth-child(2) { width: 12%; }

.css-features-data-grid-table th:nth-child(3),
.css-features-data-grid-table td:nth-child(3) { width: 10%; }

.css-features-data-grid-table th:nth-child(4),
.css-features-data-grid-table td:nth-child(4) { width: 10%; }

.css-features-data-grid-table th:nth-child(5),
.css-features-data-grid-table td:nth-child(5) { width: 12%; }

.css-features-data-grid-table th:nth-child(6),
.css-features-data-grid-table td:nth-child(6) { width: 12%; }

.css-features-data-grid-table th:nth-child(7),
.css-features-data-grid-table td:nth-child(7) { width: 12%; }

.css-features-data-grid-table th:nth-child(8),
.css-features-data-grid-table td:nth-child(8) { width: 12%; }

/* Force all spans and badges to wrap */
.css-browser-version-indicator,
.css-browser-support-percentage,
.css-performance-score-indicator,
.css-feature-recommendation-badge {
    display: inline-block !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    white-space: normal !important;
    max-width: 100% !important;
}

/*code bloks icon*/

.code-language-icon i {
    font-size: 20px;
    margin-right: 8px;
}

/*Call to action*/

.cta-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 40px 30px;
    margin: 30px 0;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cta-subtitle {
    font-size: 18px;
    margin: 0 0 20px 0;
    opacity: 0.9;
    font-weight: 400;
}

.cta-description {
    font-size: 16px;
    margin: 0 0 24px 0;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.cta-benefit {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-benefit i {
    color: #4ade80;
}

.cta-actions {
    margin-top: 30px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    color: #5a67d8;
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
    color: white;
}

.cta-trust {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-indicator {
    font-size: 13px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-indicator::before {
    content: '✓';
    color: #4ade80;
    font-weight: bold;
}

.cta-urgency {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3); }
    50% { box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5); }
}

@media (max-width: 768px) {
    .cta-container { padding: 30px 20px; }
    .cta-title { font-size: 26px; }
    .cta-subtitle { font-size: 16px; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-button { width: 100%; max-width: 280px; justify-content: center; }
    .cta-benefits { flex-direction: column; align-items: center; }
}

<!-- Section 4: How It Works Process -->

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8fafc;
}

.section4-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px;
}

/* Section 4: Split Layout with Numbers */
/* Section 4: Split Layout with Numbers */
.section4-container {
    margin: 2rem -40px;
    padding: 0 20px;
}
.section-4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    margin-bottom: 60px;
}
.section-4 .left-panel {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section-4 .right-panel {
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section-4 .left-panel h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}
.section-4 .left-panel p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.95);
}
.section-4 .stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}
.section-4 .stat-item {
    text-align: center;
    padding: 12px 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}
.section-4 .stat-item .number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fbbf24;
    display: block;
    margin-bottom: 3px;
}
.section-4 .stat-item .label {
    font-size: 0.85rem;
    opacity: 0.8;
    color: rgba(255,255,255,0.9);
    line-height: 1.1;
}
.section-4 .process-steps {
    counter-reset: step-counter;
}
.section-4 .process-step {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    counter-increment: step-counter;
}
.section-4 .process-step::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}
.section-4 .step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
}
.section-4 .step-desc {
    color: #475569;
    line-height: 1.4;
    font-size: 0.95rem;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .section-4 {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .section4-container {
        margin: 2rem -20px;
        padding: 0 10px;
    }
    
    .section-4 .left-panel,
    .section-4 .right-panel {
        padding: 30px 25px;
    }
    
    .section-4 .left-panel h2 {
        font-size: 1.75rem;
    }
    
    .section-4 .left-panel p {
        font-size: 0.95rem;
    }
    
    .section-4 .stat-item .number {
        font-size: 1.6rem;
    }
    
    .section-4 .process-step {
        margin-bottom: 18px;
        padding-left: 45px;
    }
}

/* =================================================================
   SECTION 7: CDN - COMPARISON TABLE DESIGN - RESPONSIVE FIXED
   ================================================================= */

.cdn-comparison-container {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
    background: linear-gradient(135deg, var(--extra-light-blue), var(--white));
}

.cdn-comparison-header {
    background: var(--white);
    padding: 2rem 1rem;
    text-align: center;
    border: 3px solid var(--primary-blue);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.cdn-comparison-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, transparent, var(--light-blue), transparent);
    transform: rotate(45deg);
    opacity: 0.3;
}

.cdn-comparison-title {
    font-size: 1.8rem;
    color: var(--primary-blue);
    position: relative;
    z-index: 1;
}

.cdn-comparison-table {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    width: 100%;
    overflow-x: auto;
}

.cdn-table-header {
    background: black;
    color: var(--white);
    padding: 1.5rem 1rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Fixed to 5 columns */
    gap: 1rem;
    font-weight: bold;
    font-size: 1rem;
    min-width: 800px; /* Prevents collapse */
}

.cdn-table-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Fixed to 5 columns */
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-blue);
    min-width: 800px; /* Prevents collapse */
}

.cdn-table-row:nth-child(even) {
    background: var(--extra-light-blue);
}

.cdn-table-row:last-child {
    border-bottom: none;
}

.cdn-metric-value {
    font-weight: bold;
    color: var(--primary-blue);
}

.cdn-table-header > div,
.cdn-table-row > div {
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 0; /* Allows flex shrinking */
}

/* Tablet Responsive */
@media (max-width: 1200px) {
    .cdn-comparison-container {
        max-width: 100%;
        margin: 2rem 0.5rem;
    }
    
    .cdn-comparison-title {
        font-size: 1.6rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cdn-comparison-container {
        margin: 1rem 0;
        padding: 0.5rem;
    }
    
    .cdn-comparison-header {
        padding: 1.5rem 0.5rem;
        margin-bottom: 1rem;
    }
    
    .cdn-comparison-title {
        font-size: 1.4rem;
    }
    
    .cdn-comparison-table {
        border-radius: 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .cdn-table-header {
        padding: 1rem 0.5rem;
        font-size: 0.8rem;
        min-width: 600px;
        gap: 0.5rem;
    }
    
    .cdn-table-row {
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
        min-width: 600px;
        gap: 0.5rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .cdn-comparison-container {
        padding: 0.25rem;
    }
    
    .cdn-comparison-header {
        padding: 1rem 0.5rem;
    }
    
    .cdn-comparison-title {
        font-size: 1.2rem;
    }
    
    .cdn-table-header {
        padding: 0.8rem 0.3rem;
        font-size: 0.75rem;
        min-width: 500px;
    }
    
    .cdn-table-row {
        padding: 0.6rem 0.3rem;
        font-size: 0.8rem;
        min-width: 500px;
    }
}

.cdn-comparison-wrapper {
    margin: 2rem -40px;
    padding: 0 20px;
}

.cdn-comparison-table {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    overflow-x: auto !important;
}

/* command block copy*/

/* Command Block */
.cmd-block {
    position: relative;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border-radius: 8px;
    margin: 1rem 0;
    padding: 1rem;
    border: 1px solid #4a5568;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cmd-prompt {
    color: #68d391;
    font-family: 'Monaco', 'Menlo', monospace;
    font-weight: bold;
    font-size: 1.1em;
    flex-shrink: 0;
}

.cmd-code {
    font-family: 'Monaco', 'Menlo', monospace;
    color: #e2e8f0;
    font-size: 0.95em;
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
}

.cmd-copy-btn {
    background: #2b6cb0;
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8em;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.cmd-copy-btn:hover {
    background: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(43, 108, 176, 0.3);
}

.cmd-copy-btn i {
    font-size: 0.9em;
}

/* Success feedback */
.copy-success {
    background: #38a169 !important;
}
