        /* Article-Specific Styles */
        .article-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 100px 0 60px;
            color: white;
        }
        
        .article-hero-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        
        .article-category {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        
        .article-hero h1 {
            font-size: 52px;
            font-weight: 800;
            margin: 0 0 25px 0;
            line-height: 1.2;
        }
        
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            font-size: 15px;
            opacity: 0.95;
            flex-wrap: wrap;
        }
        
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .article-content {
            max-width: 850px;
            margin: 0 auto;
            padding: 60px 20px;
        }
        
        .article-intro {
            font-size: 20px;
            line-height: 1.8;
            color: #374151;
            margin: 0 0 40px 0;
            padding: 30px;
            background: #f9fafb;
            border-left: 4px solid #5B47E0;
            border-radius: 8px;
        }
        
        .article-content h2 {
            font-size: 36px;
            font-weight: 800;
            color: #111827;
            margin: 60px 0 25px 0;
            line-height: 1.3;
        }
        
        .article-content h3 {
            font-size: 28px;
            font-weight: 700;
            color: #1f2937;
            margin: 40px 0 20px 0;
        }
        
        .article-content h4 {
            font-size: 22px;
            font-weight: 700;
            color: #374151;
            margin: 30px 0 15px 0;
        }
        
        .article-content p {
            font-size: 18px;
            line-height: 1.8;
            color: #4b5563;
            margin: 0 0 20px 0;
        }
        
        .article-content a {
            color: #5B47E0;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .article-content a:hover {
            border-bottom-color: #5B47E0;
        }
        
        .article-content ul, .article-content ol {
            margin: 20px 0;
            padding-left: 30px;
        }
        
        .article-content li {
            font-size: 18px;
            line-height: 1.8;
            color: #4b5563;
            margin-bottom: 12px;
        }
        
        .article-content strong {
            color: #1f2937;
            font-weight: 700;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #ede9fe 0%, #f3f4f6 100%);
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
            border-left: 4px solid #7c3aed;
        }
        
        .highlight-box h3 {
            color: #7c3aed;
            margin-top: 0;
        }
        
        .tip-box {
            background: #ecfdf5;
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            border-left: 4px solid #10b981;
        }
        
        .tip-box strong {
            color: #10b981;
            display: block;
            margin-bottom: 10px;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .warning-box {
            background: #fef2f2;
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            border-left: 4px solid #ef4444;
        }
        
        .warning-box strong {
            color: #ef4444;
            display: block;
            margin-bottom: 10px;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .comparison-table {
            width: 100%;
            margin: 40px 0;
            border-collapse: collapse;
            background: white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .comparison-table th {
            background: #5B47E0;
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 700;
        }
        
        .comparison-table td {
            padding: 15px;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        
        .comparison-table tr:nth-child(even) {
            background: #f9fafb;
        }
        
        .toc {
            background: #f9fafb;
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
            border: 2px solid #e5e7eb;
        }
        
        .toc h3 {
            margin-top: 0;
            color: #111827;
            font-size: 24px;
        }
        
        .toc ul {
            list-style: none;
            padding: 0;
            margin: 20px 0 0 0;
        }
        
        .toc li {
            margin: 12px 0;
        }
        
        .toc a {
            color: #5B47E0;
            font-weight: 600;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .toc a:hover {
            text-decoration: underline;
        }
        
        .article-cta {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 50px;
            border-radius: 16px;
            margin: 60px 0;
            text-align: center;
        }
        
        .article-cta h3 {
            color: white;
            font-size: 32px;
            margin: 0 0 20px 0;
        }
        
        .article-cta p {
            color: rgba(255, 255, 255, 0.95);
            font-size: 18px;
            margin: 0 0 30px 0;
        }
        
        .article-cta .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .article-cta .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: white;
            color: #5B47E0;
            border-radius: 8px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .article-cta .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .related-articles {
            margin: 60px 0;
        }
        
        .related-articles h3 {
            font-size: 28px;
            font-weight: 800;
            color: #111827;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        
        .related-card {
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            padding: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .related-card:hover {
            border-color: #5B47E0;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .related-card h4 {
            font-size: 18px;
            color: #111827;
            margin: 0 0 10px 0;
        }
        
        .related-card p {
            font-size: 15px;
            color: #6b7280;
            margin: 0;
        }
        
        @media (max-width: 768px) {
            .article-hero h1 {
                font-size: 36px;
            }
            
            .article-content h2 {
                font-size: 28px;
            }
            
            .article-content h3 {
                font-size: 24px;
            }
            
            .article-intro {
                font-size: 18px;
                padding: 25px 20px;
            }
            
            .related-grid {
                grid-template-columns: 1fr;
            }
            
            .comparison-table {
                font-size: 14px;
            }
            
            .comparison-table th,
            .comparison-table td {
                padding: 10px;
            }
        }
