        :root {
            --brand: #0b4aa2;
            --brand-2: #e63946;
            --ink: #111;
            --muted: #666;
            --bg: #fafafa;
            --card: #fff;
            --radius: 12px;
            --shadow: 0 6px 16px rgba(0,0,0,.08);
            --transition: all 0.3s ease;
        }
        
        * {
            box-sizing: border-box;
        }
        
        body {
            margin: 0;
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
            color: var(--ink);
            background: var(--bg);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        
        a:hover {
            color: var(--brand-2);
        }
        
        img {
            max-width: 100%;
            display: block;
            height: auto;
        }
        
        /* Full width image above breadcrumb */
        .full-width-banner {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        
        /* Breadcrumb */
        .breadcrumb-wrapper {
            padding: 1rem 0;
            background-color: #0b4aa2;
            border-bottom: 1px solid #e9ecef;
        }
        
        .breadcrumb {
            margin-bottom: 0;
            font-size: 0.9rem;
        }
        
        .breadcrumb-item a {
            color: white;
        }
        
        .breadcrumb-item.active {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.7);
            content: ">";
        }
        
        /* Active menu */
        .nav-item.active a,
        .list-group-item.active {
            color: var(--brand-2) !important;
            font-weight: 600;
            border-color: var(--brand-2) !important;
        }
        
        /* Article Header */
        .article-header {
            margin: 2rem 0 3rem;
        }
        
        .article-category {
            display: inline-block;
            background: var(--brand);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }
        
        .article-title {
            font-weight: 700;
            font-size: 2.5rem;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        
        .article-meta {
            display: flex;
            align-items: center;
            color: var(--muted);
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        
        .article-meta div {
            margin-right: 20px;
            display: flex;
            align-items: center;
        }
        
        .article-meta i {
            margin-right: 8px;
        }
        
        .article-hero-img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: var(--radius);
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        
        /* Article Content */
        .article-content {
            max-width: 800px;
            margin: 0 auto 4rem;
            font-size: 1.1rem;
        }
        
        .article-content p {
            margin-bottom: 1.5rem;
        }
        
        .article-content h2 {
            font-weight: 600;
            margin: 2.5rem 0 1.5rem;
            color: var(--brand);
        }
        
        .article-content h3 {
            font-weight: 600;
            margin: 2rem 0 1rem;
        }
        
        .article-content blockquote {
            border-left: 4px solid var(--brand);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--muted);
        }
        
        .article-content img {
            border-radius: var(--radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        
        /* Table Styles - Made Responsive */
        .table-container {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }
        
        .comparison-table th, 
        .comparison-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .comparison-table th {
            background-color: var(--brand);
            color: white;
            font-weight: 500;
        }
        
        .comparison-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        
        .comparison-table tr:hover {
            background-color: #e9ecef;
        }
        
        /* Article Footer */
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            margin: 2rem 0;
        }
        
        .article-tags span {
            background: #eef2ff;
            color: var(--brand);
            padding: 6px 15px;
            border-radius: 30px;
            font-size: 0.9rem;
            margin-right: 10px;
            margin-bottom: 10px;
        }
        
        .article-share {
            display: flex;
            align-items: center;
            margin: 2rem 0;
            padding: 1.5rem 0;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .article-share span {
            font-weight: 600;
            margin-right: 15px;
            color: var(--ink);
        }
        
        .share-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f1f1f1;
            color: var(--muted);
            margin-right: 10px;
            transition: var(--transition);
        }
        
        .share-icons a:hover {
            background: var(--brand);
            color: white;
        }
        
        /* Related Articles */
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 25px;
            font-weight: 700;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: var(--brand);
        }
        
        /* Card Styles */
        .news-card {
            background: var(--card);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0,0,0,.15);
        }
        
        .news-card .card-img-top {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .news-card .card-body {
            padding: 1.25rem;
        }
        
        .news-card .card-title {
            font-weight: 600;
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }
        
        .news-card .card-text {
            color: var(--muted);
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .news-card .category-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--brand);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            z-index: 1;
            max-width: fit-content;
        }
        
        /* Sidebar */
        .sidebar-widget {
            background: var(--card);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .sidebar-widget .widget-title {
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f1f1f1;
        }
        
        .trending-news {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f1f1f1;
        }
        
        .trending-news:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .trending-news img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
        }
        
        .trending-news .news-content {
            padding-left: 15px;
            flex: 1;
            min-width: 0;
        }
        
        .trending-news .news-title {
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 5px;
            line-height: 1.4;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .trending-news .news-meta {
            font-size: 0.75rem;
            color: var(--muted);
        }
        
        /* Newsletter */
        .newsletter-form {
            margin-top: 20px;
        }
        
        .newsletter-form .form-control {
            border-radius: 30px;
            padding: 12px 20px;
            margin-bottom: 15px;
            border: 1px solid #e2e8f0;
        }
        
        .newsletter-form .btn {
            background: var(--brand);
            color: white;
            border-radius: 30px;
            padding: 12px 20px;
            width: 100%;
            font-weight: 500;
            transition: var(--transition);
        }
        
        .newsletter-form .btn:hover {
            background: var(--brand-2);
        }
        
        /* New Content Sections */
        .content-section {
            margin: 4rem 0;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        
        .feature-card {
            background: var(--card);
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0,0,0,.15);
        }
        
        .feature-card h3 {
            color: var(--brand);
            margin-bottom: 1rem;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--brand);
            margin-bottom: 1rem;
        }
        
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .stat-card {
            text-align: center;
            padding: 1.5rem;
            background: var(--card);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--brand);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: var(--muted);
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .accordion-button:not(.collapsed) {
            color: var(--brand-2);
            background-color: rgba(230, 57, 70, 0.1);
            box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
        }
        
        .accordion-button:focus {
            border-color: var(--brand-2);
            box-shadow: 0 0 0 0.25rem rgba(230, 57, 70, 0.25);
        }
        
        /* Code Block Styling */
        .code-block {
            background: #2d2d2d;
            color: #f8f8f2;
            border-radius: var(--radius);
            padding: 1.5rem;
            margin: 2rem 0;
            overflow-x: auto;
            font-family: 'Fira Code', monospace;
            box-shadow: var(--shadow);
        }
        
        .code-keyword {
            color: #ff79c6;
        }
        
        .code-function {
            color: #50fa7b;
        }
        
        .code-comment {
            color: #6272a4;
        }
        
        .code-string {
            color: #f1fa8c;
        }
        
        .code-number {
            color: #bd93f9;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .article-title {
                font-size: 2rem;
            }
            
            .article-hero-img {
                height: 400px;
            }
            
            .full-width-banner {
                height: 250px;
            }
        }
        
        @media (max-width: 768px) {
            .article-title {
                font-size: 1.8rem;
            }
            
            .article-hero-img {
                height: 300px;
            }
            
            .article-meta div {
                margin-right: 15px;
                margin-bottom: 10px;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
            }
            
            .full-width-banner {
                height: 200px;
            }
        }
        
        @media (max-width: 576px) {
            .article-title {
                font-size: 1.5rem;
            }
            
            .article-hero-img {
                height: 250px;
            }
            
            .article-content {
                font-size: 1rem;
            }
            
            .article-share {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .article-share span {
                margin-bottom: 15px;
            }
            
            .comparison-table {
                font-size: 0.85rem;
            }
            
            .comparison-table th, 
            .comparison-table td {
                padding: 0.75rem 0.5rem;
            }
            
            .feature-grid,
            .stat-grid {
                grid-template-columns: 1fr;
            }
            
            .stat-grid {
                gap: 1rem;
            }
            
            .stat-card {
                padding: 1rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .trending-news {
                flex-direction: column;
            }
            
            .trending-news img {
                width: 100%;
                margin-bottom: 10px;
            }
            
            .trending-news .news-content {
                padding-left: 0;
            }
            
            .full-width-banner {
                height: 150px;
            }
        }
