
        /* Blog Post Specific Styles */
        .post-header {
            background: linear-gradient(135deg, #57C3D0 0%, #74B9FF 100%);
            color: white;
            padding: 8rem 0 3rem;
            margin-top: 80px;
        }
        
        .post-header-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .post-breadcrumb {
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }
        
        .post-breadcrumb a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }
        
        .post-breadcrumb a:hover {
            opacity: 0.7;
        }
        
        .post-category {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 1.5rem;
            font-weight: 600;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .post-title {
            font-size: 3rem;
            font-family: 'LapsusPro', Arial, sans-serif;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        .post-meta {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            opacity: 0.9;
            font-size: 1rem;
        }
        
        .post-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .post-featured-image {
            max-width: 1200px;
            margin: -3rem auto 0;
            padding: 0 2rem;
            position: relative;
            z-index: 10;
        }
        
        .post-featured-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            background: linear-gradient(135deg, #57C3D0 0%, #74B9FF 100%);
        }
        
        .post-content {
            max-width: 800px;
            margin: 4rem auto;
            padding: 0 2rem;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
        }
        
        .post-content h2 {
            font-size: 2rem;
            color: #333;
            margin: 3rem 0 1.5rem;
            font-family: 'LapsusPro', Arial, sans-serif;
        }
        
        .post-content h3 {
            font-size: 1.5rem;
            color: #444;
            margin: 2.5rem 0 1rem;
            font-family: 'LapsusPro', Arial, sans-serif;
        }
        
        .post-content p {
            margin-bottom: 1.5rem;
        }
        
        .post-content ul, .post-content ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        
        .post-content li {
            margin-bottom: 0.8rem;
        }
        
        .post-content strong {
            color: #57C3D0;
            font-weight: 600;
        }
        
        .post-content blockquote {
            background: #f8f9fa;
            border-left: 4px solid #57C3D0;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            font-style: italic;
            border-radius: 0 10px 10px 0;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, rgba(87, 195, 208, 0.1) 0%, rgba(116, 185, 255, 0.1) 100%);
            border: 2px solid #57C3D0;
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
        }
        
        .highlight-box h3 {
            color: #57C3D0;
            margin-top: 0;
        }
        
        .post-cta {
            background: linear-gradient(135deg, #57C3D0 0%, #74B9FF 100%);
            color: white;
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
            margin: 3rem 0;
        }
        
        .post-cta h3 {
            font-size: 2rem;
            font-family: 'LapsusPro', Arial, sans-serif;
            margin-bottom: 1rem;
            color: white;
        }
        
        .post-cta p {
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        
        .post-cta-button {
            background: white;
            color: #57C3D0;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .post-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        .author-bio {
            background: #f8f9fa;
            border-radius: 20px;
            padding: 2rem;
            margin: 3rem 0;
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        
        .author-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, #57C3D0 0%, #74B9FF 100%);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            font-weight: bold;
        }
        
        .author-info h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #333;
        }
        
        .author-info p {
            color: #666;
            margin-bottom: 0;
        }
        
        .related-posts {
            background: #f8f9fa;
            padding: 4rem 0;
        }
        
        .related-posts-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .related-posts h2 {
            text-align: center;
            font-size: 2.5rem;
            font-family: 'LapsusPro', Arial, sans-serif;
            color: #333;
            margin-bottom: 3rem;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .related-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        .related-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .related-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            background: linear-gradient(135deg, #57C3D0 0%, #74B9FF 100%);
        }
        
        .related-card-content {
            padding: 1.5rem;
        }
        
        .related-card h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #333;
        }
        
        .related-card p {
            color: #666;
            font-size: 0.95rem;
            margin: 0;
        }
        
        .share-buttons {
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
            padding: 1.5rem 0;
            border-top: 2px solid #f0f0f0;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .share-buttons span {
            font-weight: 600;
            color: #666;
        }
        
        .share-button {
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .share-twitter {
    background: #000000;  
    color: white;
}
        
        .share-facebook {
            background: #4267B2;
            color: white;
        }
        
        .share-linkedin {
            background: #0077B5;
            color: white;
        }
        
        .share-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        @media (max-width: 768px) {
            .post-header {
                padding: 6rem 2rem 2rem;
                margin-top: 60px;
            }
            
            .post-title {
                font-size: 2rem;
            }
            
            .post-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .post-featured-image {
                margin: -2rem auto 0;
            }
            
            .post-featured-image img {
                height: 250px;
                border-radius: 15px;
            }
            
            .post-content {
                font-size: 1rem;
                margin: 2rem auto;
            }
            
            .post-content h2 {
                font-size: 1.6rem;
            }
            
            .post-content h3 {
                font-size: 1.3rem;
            }
            
            .author-bio {
                flex-direction: column;
                text-align: center;
            }
            
            .related-grid {
                grid-template-columns: 1fr;
            }
            
            .share-buttons {
                flex-wrap: wrap;
            }
        }

        .share-whatsapp {
    background: #25D366;
    color: white;
}