
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
       
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--secondary-color);
            color: #fff;
            border: none;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            font-size: 14px;
        }
        
        .btn:hover {
            background-color: #e09a05;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        
        
        /* Breadcrumb */
        .breadcrumb {
            padding: 20px 0;
            background-color: var(--bg-light);
        }
        
        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }
        
        .breadcrumb-nav a {
            color: var(--primary-color);
        }
        
        .breadcrumb-nav a:hover {
            text-decoration: underline;
        }
        
        .breadcrumb-nav span {
            color: var(--light-text);
        }
        
        /* Article Header */
        .article-header {
            text-align: center;
            margin: 40px 0;
        }
        
        .article-title {
            font-size: 36px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
            color: var(--light-text);
            font-size: 14px;
        }
        
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .article-meta i {
            color: var(--primary-color);
        }
        
        .article-image {
            margin: 30px 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        /* Article Content */
        .article-container {
            display: flex;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .article-main {
            flex: 2;
        }
        
        .article-sidebar {
            flex: 1;

            position: sticky;
            top: 200px;
        }
        
        .article-content {
            font-size: 16px;
            line-height: 1.8;
        }
        
        .article-content p {
            margin-bottom: 20px;
        }
        
        .article-content img {
            max-width: 100%;
            height: auto;
            margin: 30px 0;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .article-content h2 {
            font-size: 28px;
            margin: 40px 0 20px;
            color: var(--primary-color);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--bg-light);
        }
        
        .article-content h3 {
            font-size: 22px;
            margin: 30px 0 15px;
        }
        
        .article-content blockquote {
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            margin: 30px 0;
            background-color: var(--bg-light);
            font-style: italic;
        }
        
        .article-content ul, 
        .article-content ol {
            margin: 20px 0;
            padding-left: 20px;
        }
        
        .article-content li {
            margin-bottom: 10px;
        }
        
        /* Tags */
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 40px 0;
        }
        
        .tag {
            padding: 5px 15px;
            background-color: var(--bg-light);
            border-radius: 20px;
            font-size: 14px;
        }
        
        .tag:hover {
            background-color: var(--primary-color);
            color: #fff;
        }
        
        /* Author Box */
        .author-box {
            display: flex;
            gap: 20px;
            padding: 30px;
            background-color: var(--bg-light);
            border-radius: 8px;
            margin: 50px 0;
        }
        
        .author-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
        }
        
        .author-info h4 {
            margin-bottom: 5px;
        }
        
        .author-bio {
            color: var(--light-text);
            margin-bottom: 15px;
        }
        
        .author-social {
            display: flex;
            gap: 15px;
        }
        
        .author-social a {
            color: var(--primary-color);
            font-size: 18px;
        }
        
        /* Related Posts */
        .related-posts {
            margin: 60px 0;
        }
        
        .related-title {
            font-size: 28px;
            margin-bottom: 30px;
            text-align: center;
            color: var(--primary-color);
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .related-post {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        
        .related-post:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .related-post-image {
            height: 200px;
            overflow: hidden;
        }
        
        .related-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .related-post:hover .related-post-image img {
            transform: scale(1.05);
        }
        
        .related-post-content {
            padding: 20px;
        }
        
        .related-post-title {
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .related-post-title a:hover {
            color: var(--primary-color);
        }
        
        .related-post-date {
            font-size: 14px;
            color: var(--light-text);
        }
        
        /* Sidebar */
        .sidebar-widget {
            background: #fff;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .widget-title {
            font-size: 20px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
        }
        
        .popular-posts {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .popular-post {
            display: flex;
            gap: 15px;
        }
        
        .popular-post img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 4px;
        }
        
        .popular-post-title {
            font-size: 15px;
            margin-bottom: 5px;
        }
        
        .popular-post-title a:hover {
            color: var(--primary-color);
        }
        
        .popular-post-date {
            font-size: 13px;
            color: var(--light-text);
        }
        
        .categories-list {
            list-style: none;
        }
        
        .categories-list li {
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #eee;
        }
        
        .categories-list a {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .categories-list a:hover {
            color: var(--primary-color);
        }
        
        .categories-list span {
            background-color: var(--bg-light);
            padding: 3px 8px;
            border-radius: 20px;
            font-size: 12px;
        }
        
        
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .article-container {
                flex-direction: column;
            }
            
            .article-title {
                font-size: 30px;
            }
            
            .article-content h2 {
                font-size: 24px;
            }
            
            .article-content h3 {
                font-size: 20px;
            }
        }
        
        @media (max-width: 768px) {
            
            
            .contact-info {
                display: none;
            }
            
            .article-title {
                font-size: 26px;
            }
            
            .author-box {
                flex-direction: column;
                text-align: center;
            }
            
            .author-avatar {
                margin: 0 auto;
            }
            
            .author-social {
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .article-title {
                font-size: 22px;
            }
            
            .article-meta {
                flex-direction: row;
                gap: 10px;
            }
            
            .related-grid {
                grid-template-columns: 1fr;
            }
        }
  