       :root {
            --primary-color: #FF6A00;
            --primary-light: #ffe8d9;
            --secondary-color: #f8f9fa;
            --text-color: #333;
            --light-gray: #6c757d;
            --border-color: #dee2e6;
        }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background-color: #f9f9f9;
        }
        
        /* Hero Section */
        .archive-hero {
            background-color: var(--secondary-color);
            padding: 4rem 0;
            text-align: center;
            /* margin-bottom: 2rem; */
        }
        
        .archive-hero h1 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 2.8rem;
        }
        
        .archive-hero .sub-heading {
            font-size: 1.2rem;
            color: var(--light-gray);
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Breadcrumb */
        .breadcrumb-container {
            background-color: #f1f1f1;
            padding: 1rem 0;
            margin-bottom: 1rem;
        }
        
        .breadcrumb {
            margin-bottom: 0;
        }
        
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .breadcrumb-item.active {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        /* Main Container */
        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Sidebar Styles */
        .sidebar-section {
            margin-bottom: 2rem;
            background-color: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border: 1px solid var(--border-color);
        }
        
        .sidebar-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1.2rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--primary-light);
            display: flex;
            align-items: center;
        }
        
        .sidebar-title i {
            margin-right: 0.5rem;
        }
        
        /* Search Box */
        .search-box {
            position: relative;
        }
        
        .search-box input {
            padding-right: 45px;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            height: 45px;
        }
        
        .search-box input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(255, 106, 0, 0.25);
        }
        
        .search-box button {
            position: absolute;
            right: 5px;
            top: 5px;
            height: 35px;
            width: 35px;
            background-color: var(--primary-color);
            border: none;
            border-radius: 5px;
            color: white;
            transition: background-color 0.3s;
        }
        
        .search-box button:hover {
            background-color: #e55a00;
        }
        
        /* Categories List */
        .categories-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .categories-list li {
            margin-bottom: 0.8rem;
        }
        
        .categories-list li:last-child {
            margin-bottom: 0;
        }
        
        .categories-list a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 1rem;
            color: var(--text-color);
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        
        .categories-list a:hover,
        .categories-list a.active {
            background-color: var(--primary-light);
            color: var(--primary-color);
            border-color: var(--primary-color);
            transform: translateX(5px);
        }
        
        .category-count {
            background-color: var(--primary-color);
            color: white;
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        /* Tags Cloud */
        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .tag {
            display: inline-block;
            padding: 0.4rem 0.8rem;
            background-color: #f8f9fa;
            border: 1px solid var(--border-color);
            border-radius: 20px;
            color: var(--light-gray);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        
        .tag:hover {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }
        
        /* Recent Posts */
        .recent-post {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }
        
        .recent-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .recent-post-img {
            width: 70px;
            height: 70px;
            border-radius: 6px;
            overflow: hidden;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .recent-post-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .recent-post-content h5 {
            font-size: 0.95rem;
            margin-bottom: 0.3rem;
            line-height: 1.3;
        }
        
        .recent-post-content h5 a {
            color: var(--text-color);
            text-decoration: none;
        }
        
        .recent-post-content h5 a:hover {
            color: var(--primary-color);
        }
        
        .recent-post-date {
            font-size: 0.8rem;
            color: var(--light-gray);
        }
        
        /* News Cards - 2 Columns */
        .news-card-wrapper {
            padding: 15px;
        }
        
        .news-card {
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            background-color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        
        .news-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .card-image-container {
            padding: 20px 20px 0 20px;
        }
        
        .card-image {
            height: 220px;
            overflow: hidden;
            border-radius: 6px;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .news-card:hover .card-image img {
            transform: scale(1.05);
        }
        
        .card-body {
            padding: 25px;
            position: relative;
            margin-top: -20%;
        }
        
        .card-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--text-color);
            line-height: 1.4;
            background-color: #fff;
            padding: 15px;
            min-height:110px;
        }
        
        .card-title a {
            color: inherit;
            text-decoration: none;
        }
        
        .card-title a:hover {
            color: var(--primary-color);
        }
        
        .post-meta {
            color: var(--light-gray);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .post-meta i {
            margin-right: 0.5rem;
        }
        
        .card-text {
            color: #555;
            margin-bottom: 0;
            font-size: 0.95rem;
            line-height: 1.6;
            min-height: 150px;
        }
        
        /* Load More Button */
        .load-more-btn {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .load-more-btn:hover {
            background-color: #e55a00;
            border-color: #e55a00;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 106, 0, 0.3);
        }
        
        /* Row and Column Adjustments - 2 Columns */
        .news-row {
            margin-left: -15px;
            margin-right: -15px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .main-container {
                max-width: 1140px;
            }
            
            /* 2 columns on large screens */
            .col-lg-6 {
                width: 50%;
            }
        }
        
        @media (max-width: 992px) {
            .main-container {
                max-width: 960px;
            }
            
            .sidebar-section {
                margin-bottom: 1.5rem;
            }
            
            .card-image {
                height: 200px;
            }
            
            .card-body {
                padding: 20px;
            }
            
            /* 2 columns on medium screens */
            .col-md-6 {
                width: 50%;
            }
        }
        
        @media (max-width: 768px) {
            .archive-hero {
                padding: 3rem 0;
            }
            
            .archive-hero h1 {
                font-size: 2.2rem;
            }
            
            .main-container {
                max-width: 720px;
            }
            
            .card-image {
                height: 220px;
            }
            
            .news-card-wrapper {
                padding: 10px;
            }
            
            .sidebar-title {
                font-size: 1.2rem;
            }
            
            /* 1 column on small screens */
            .col-sm-12 {
                width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .archive-hero {
                padding: 2.5rem 0;
            }
            
            .archive-hero h1 {
                font-size: 1.8rem;
            }
            
            .main-container {
                max-width: 540px;
            }
            
            .card-image {
                height: 200px;
            }
            
            .card-body {
                padding: 18px;
            }
            
            .card-title {
                font-size: 1.2rem;
            }
            
            .news-card-wrapper {
                padding: 8px;
            }
        }
        
        @media (max-width: 480px) {
            .card-image-container {
                padding: 15px 15px 0 15px;
            }
            
            .card-image {
                height: 180px;
            }
        }
            /* Pagination Styles */
    .pagination {
        margin-bottom: 2rem;
    }
    
    .page-link {
        color: #555;
        border: 1px solid #dee2e6;
        padding: 0.5rem 1rem;
        margin: 0 3px;
        border-radius: 5px;
        transition: all 0.3s ease;
        font-weight: 500;
    }
    
    .page-link:hover {
        color: #FF6A00;
        background-color: #ffe8d9;
        border-color: #FF6A00;
        transform: translateY(-2px);
    }
    
    .page-item.active .page-link {
        background-color: #FF6A00;
        border-color: #FF6A00;
        color: white;
    }
    
    .page-item.disabled .page-link {
        color: #6c757d;
        background-color: #f8f9fa;
        border-color: #dee2e6;
        opacity: 0.6;
    }
    
    .page-item.disabled .page-link:hover {
        transform: none;
        cursor: not-allowed;
    }
    
    /* Page Info */
    .page-info {
        color: #6c757d;
        font-size: 0.9rem;
    }
    
    /* Mobile Responsive */
    @media (max-width: 768px) {
        .pagination {
            flex-wrap: wrap;
        }
        
        .page-link {
            padding: 0.4rem 0.8rem;
            margin: 2px;
            font-size: 0.9rem;
        }
        
        .page-item:first-child .page-link,
        .page-item:last-child .page-link {
            font-size: 1.1rem;
            padding: 0.4rem 0.8rem;
        }
    }
    
    @media (max-width: 576px) {
        .page-link {
            padding: 0.35rem 0.7rem;
            margin: 1px;
            font-size: 0.85rem;
        }
        
        .page-info {
            font-size: 0.8rem;
        }
    }
    /* NewsDetail Style */
       /* Article Header */
        .article-header {
            background-color: white;
            padding: 3rem 0 2rem 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--border-color);
        }
        
        .article-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-color);
            line-height: 1.2;
        }
        
        .article-meta {
            color: var(--light-gray);
            font-size: 1rem;
            margin-bottom: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.5rem;
            justify-content: center;
        }
        
        .article-category {
            display: inline-block;
            background-color: var(--primary-light);
            color: var(--primary-color);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        /* Main Content Layout */
        .main-content-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        /* Featured Image & Related Posts Sidebar - 2 Columns */
        .image-related-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        /* Featured Image */
        .featured-image-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 100%;
        }
        
        .featured-image {
            width: 100%;
            /* height: 100%; */
            min-height: 400px;
            object-fit: cover;
        }
        
        .image-caption {
            background-color: #f8f9fa;
            padding: 1rem;
            font-style: italic;
            color: var(--light-gray);
            border-top: 1px solid var(--border-color);
        }
        
        /* Related Posts Sidebar */
        .related-posts-sidebar {
            background-color: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            height: fit-content;
        }
        
        .sidebar-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1.2rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--primary-light);
        }
        
        /* Article Content - Full Width */
        .article-content {
            background-color: white;
            border-radius: 10px;
            padding: 3rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        
        .article-text {
            font-size: 1.1rem;
            color: #444;
            margin-bottom: 2rem;
        }
        
        .article-text p {
            margin-bottom: 1.5rem;
        }
        
        .article-text blockquote {
            border-left: 4px solid var(--primary-color);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
            background-color: var(--primary-light);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        
        /* Comments Section - Full Width */
        .comments-section {
            background-color: white;
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin-bottom: 3rem;
        }
        
        .section-titles {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--primary-light);
        }
        
        /* Comment Form */
        .comment-form {
            margin-bottom: 3rem;
            padding: 2rem;
            background-color: #f8f9fa;
            border-radius: 8px;
        }
        
        .form-title {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        
        /* Comments List */
        .comment {
            display: flex;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #eee;
        }
        
        .comment:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .comment-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }
        
        .comment-content {
            flex-grow: 1;
        }
        
        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }
        
        .comment-author {
            font-weight: 600;
            color: var(--text-color);
        }
        
        .comment-date {
            color: var(--light-gray);
            font-size: 0.9rem;
        }
        
        .comment-text {
            color: #555;
            line-height: 1.6;
        }
        
        .comment-reply {
            margin-top: 1rem;
            padding-left: 3rem;
            border-left: 2px solid var(--primary-light);
        }
        
        .reply-btn {
            color: var(--primary-color);
            background: none;
            border: none;
            padding: 0;
            font-size: 0.9rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            margin-top: 0.5rem;
        }
        
        .reply-btn:hover {
            text-decoration: underline;
        }
        
        /* Related Posts Items */
        .related-post {
            display: flex;
            margin-bottom: 1.2rem;
            padding-bottom: 1.2rem;
            border-bottom: 1px solid #eee;
        }
        
        .related-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .related-post-img {
            width: 80px;
            height: 70px;
            border-radius: 6px;
            overflow: hidden;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .related-post-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .related-post-content h4 {
            font-size: 0.95rem;
            margin-bottom: 0.3rem;
            line-height: 1.3;
        }
        
        .related-post-content h4 a {
            color: var(--text-color);
            text-decoration: none;
        }
        
        .related-post-content h4 a:hover {
            color: var(--primary-color);
        }
        
        .related-post-date {
            font-size: 0.8rem;
            color: var(--light-gray);
        }
        
        /* Social Sharing */
        .social-sharing {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #eee;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light-gray);
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid var(--border-color);
        }
        
        .social-icon:hover {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .article-title {
                font-size: 2.2rem;
            }
            
            .article-content {
                padding: 2.5rem;
            }
            
            .featured-image {
                min-height: 350px;
            }
            
            .image-related-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .article-header {
                padding: 2rem 0 1rem 0;
            }
            
            .article-title {
                font-size: 1.8rem;
            }
            
            .article-content {
                padding: 2rem;
            }
            
            .featured-image {
                min-height: 300px;
            }
            
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.8rem;
            }
            
            .comment {
                flex-direction: column;
            }
            
            .comment-avatar {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
            .comment-reply {
                padding-left: 1.5rem;
            }
            
            .comments-section {
                padding: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .article-title {
                font-size: 1.6rem;
            }
            
            .article-content {
                padding: 1.5rem;
            }
            
            .article-text {
                font-size: 1rem;
            }
            
            .featured-image {
                min-height: 250px;
            }
            
            .comments-section {
                padding: 1.5rem;
            }
            
            .comment-form {
                padding: 1.5rem;
            }
            
            .related-posts-sidebar {
                padding: 1.2rem;
            }
        }