 
        :root {
            --primary: #1a73e8;
            --primary-dark: #1557b0;
            --secondary: #34a853;
            --text: #333;
            --bg: #f8f9fa;
            --card: #ffffff;
            --border: #e0e0e0;
            --gray: #666;
            --light-gray: #f1f3f5;
            --success: #28a745;
            --warning: #ffc107;
            --danger: #dc3545;
            --highlight: #fff8e1;
        }
        
    
        .tagline {
            font-size: 1.2rem;
            opacity: 0.9;
            font-weight: 300;
        }
        
       
        
        .article-hero {
            background: white;
            padding: 3rem 0;
            margin-bottom: 2rem;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }
        
        .article-header {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .article-badge {
            display: inline-block;
            background: var(--success);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 1rem;
        }
        
        .article-title {
            font-size: 2.5rem;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        .article-meta {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            font-size: 0.95rem;
            color: var(--gray);
            flex-wrap: wrap;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .meta-item svg {
            width: 18px;
            height: 18px;
            fill: var(--gray);
        }
        
        .article-image {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 16px;
            margin: 2rem 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .article-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            font-size: 1.1rem;
            line-height: 1.9;
        }
        
        .article-content p {
            margin-bottom: 1.5rem;
        }
        
        .article-content h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1.5rem;
            color: var(--primary);
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .article-content h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        
        .highlight-box {
            background: var(--highlight);
            border-left: 5px solid var(--warning);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: #8a6d00;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        
        .feature-item {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            text-align: center;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .feature-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 3rem 0;
            margin: 4rem 0;
            border-radius: 16px;
            text-align: center;
        }
        
        .cta-title {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .cta-btn {
            display: inline-block;
            background: white;
            color: var(--primary);
            padding: 1rem 2.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }
        
        .share-section {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 3rem 0;
            padding: 1.5rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            flex-wrap: wrap;
        }
        
        .share-text {
            font-weight: 600;
            color: var(--gray);
        }
        
        .share-buttons {
            display: flex;
            gap: 0.8rem;
        }
        
        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }
        
        .share-btn:hover {
            transform: scale(1.1);
        }
        
        .share-btn.twitter { background: #1da1f2; }
        .share-btn.facebook { background: #1877f2; }
        .share-btn.linkedin { background: #0a66c2; }
        .share-btn.whatsapp { background: #25d366; }
        
        .related-news {
            margin-top: 5rem;
            padding-top: 3rem;
            border-top: 1px solid var(--border);
        }
        
        .related-title {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: var(--primary);
            text-align: center;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .related-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        
        .related-card:hover {
            transform: translateY(-5px);
        }
        
        .related-image {
            height: 180px;
            background: var(--light-gray);
            background-size: cover;
            background-position: center;
        }
        
        .related-content {
            padding: 1.5rem;
        }
        
        .related-badge {
            display: inline-block;
            font-size: 0.8rem;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            margin-bottom: 0.8rem;
            font-weight: 600;
        }
        
        .related-card-title {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            color: var(--primary);
            line-height: 1.4;
        }
        
        .related-meta {
            font-size: 0.85rem;
            color: var(--gray);
        }
        
        footer {
            background: #1a1a1a;
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 5rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }
        
        .footer-links h4 {
            color: var(--secondary);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 0.7rem;
        }
        
        .footer-links ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: var(--primary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #999;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .article-title {
                font-size: 2rem;
            }
            .article-image {
                height: 300px;
            }
            .article-content {
                font-size: 1rem;
            }
            .nav-links {
                gap: 1rem;
                font-size: 0.9rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .share-section {
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .article-title {
                font-size: 1.8rem;
            }
            .article-hero {
                padding: 2rem 0;
            }
            .article-header, .article-content {
                padding: 0 15px;
            }
        }
        .related-card-title a {
  color: var(--primary); /* Use your theme primary color */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s ease;
}

.related-card-title a:hover {
  color: var(--secondary); /* Highlight on hover */
 
}

