 /* .blog-container {
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            animation: slideUp 0.8s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .header {
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            color: white;
            padding: 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="25" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="25" cy="75" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="75" cy="75" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            animation: float 20s linear infinite;
        }

        @keyframes float {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(-50px, -50px) rotate(360deg); }
        }

        .header h1 {
            font-size: 3em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 1;
        }

        .header p {
            font-size: 1.2em;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .content {
            padding: 40px;
        }

        .blog-post {
            margin-bottom: 40px;
            border-radius: 15px;
            overflow: hidden;
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .blog-post:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .post-image {
            width: 100%;
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .post-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
        }

        .post-content {
            padding: 30px;
        }

        .post-title {
            font-size: 1.8em;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .post-meta {
            color: #7f8c8d;
            font-size: 0.9em;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .post-excerpt {
            color: #34495e;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .read-more {
            display: inline-block;
            padding: 12px 25px;
            background: linear-gradient(45deg, #3498db, #2980b9);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .read-more:hover {
            background: linear-gradient(45deg, #2980b9, #3498db);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
        }

        .featured-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .stat-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            transform: perspective(1000px) rotateX(0deg);
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: perspective(1000px) rotateX(5deg) translateY(-5px);
        }

        .stat-number {
            font-size: 2.5em;
            font-weight: bold;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .stat-label {
            font-size: 1.1em;
            opacity: 0.9;
        }

        .sidebar {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            margin-top: 20px;
        }

        .sidebar h3 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 1.5em;
        }

        .popular-posts {
            list-style: none;
        }

        .popular-posts li {
            padding: 15px 0;
            border-bottom: 1px solid #ecf0f1;
            transition: padding-left 0.3s ease;
        }

        .popular-posts li:hover {
            padding-left: 10px;
        }

        .popular-posts a {
            color: #34495e;
            text-decoration: none;
            font-weight: 500;
        }

        .popular-posts a:hover {
            color: #3498db;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2em;
            }
            
            .content {
                padding: 20px;
            }
            
            .post-content {
                padding: 20px;
            }
            
            .featured-stats {
                grid-template-columns: 1fr;
            }
        }

        .accounting-icon {
            display: inline-block;
            width: 24px;
            height: 24px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24"><path d="M7 2v2H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-1V2h-2v2H9V2H7zm0 4h10v12H6V6h1zm2 2v2h2V8H9zm4 0v2h2V8h-2zM9 12v2h2v-2H9zm4 0v2h2v-2h-2z"/></svg>') no-repeat center;
        } */





        .blog-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 20px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }

        .main-content {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        .hero-section {
            position: relative;
            height: 300px;
            background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.8)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300"><rect fill="%23e8f4f8" width="1200" height="300"/><g fill="%23ffffff" opacity="0.1"><circle cx="100" cy="50" r="30"/><circle cx="300" cy="80" r="20"/><rect x="500" y="40" width="80" height="60" rx="8"/><circle cx="800" cy="70" r="25"/><rect x="950" y="50" width="60" height="40" rx="6"/><path d="M200 150 L280 120 L360 140 L440 110 L520 130" stroke="%23ffffff" stroke-width="3" fill="none"/></g></svg>');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 20px;
        }

        .hero-content h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .hero-content p {
            font-size: 1.1em;
            opacity: 0.9;
        }

        .article-content {
            padding: 40px;
        }

        .article-header {
            margin-bottom: 30px;
        }

        .article-title {
            font-size: 2em;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
            line-height: 1.3;
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #7f8c8d;
            font-size: 0.9em;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .badge {
            display: inline-block;
            background: #3498db;
            color: white;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.8em;
            font-weight: 600;
        }

        .article-text {
            color: #34495e;
            font-size: 1.1em;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .article-text strong {
            color: #2c3e50;
        }

        .services-list {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            margin: 25px 0;
        }

        .services-list h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 1.3em;
        }

        .services-list ol {
            padding-left: 20px;
        }

        .services-list li {
            margin-bottom: 15px;
            color: #34495e;
            line-height: 1.6;
        }

        .highlight-box {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            text-align: center;
        }

        .highlight-box a {
            color: #ecf0f1;
            text-decoration: underline;
            font-weight: 600;
        }

        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .sidebar-section {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        .sidebar-header {
            background: #34495e;
            color: white;
            padding: 20px;
            font-size: 1.2em;
            font-weight: 600;
        }

        .sidebar-content {
            padding: 20px;
        }

        .recent-post {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #ecf0f1;
            transition: transform 0.2s ease;
        }

        .recent-post:hover {
            transform: translateX(5px);
        }

        .recent-post:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .post-thumbnail {
            width: 80px;
            height: 60px;
            border-radius: 6px;
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
        }

        .post-info h4 {
            font-size: 0.95em;
            color: #2c3e50;
            margin-bottom: 5px;
            line-height: 1.3;
        }

        .post-info a {
            color: #2c3e50;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .post-info a:hover {
            color: #3498db;
        }

        .cta-section {
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            color: white;
            padding: 30px;
            text-align: center;
            border-radius: 12px;
        }

        .cta-section h3 {
            margin-bottom: 15px;
            font-size: 1.4em;
        }

        .cta-section p {
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 12px 25px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .cta-button:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        /* Ultra-wide screens (1920px and up) */
        @media (min-width: 1920px) {
            .blog-container {
                max-width: 1800px;
                grid-template-columns: 2.5fr 1fr;
                gap: 60px;
                padding: 40px;
            }
            
            .hero-section {
                height: 400px;
            }
            
            .hero-content h1 {
                font-size: 3.5em;
            }
            
            .hero-content p {
                font-size: 1.3em;
            }
            
            .article-content {
                padding: 60px;
            }
            
            .article-title {
                font-size: 2.5em;
            }
            
            .article-text {
                font-size: 1.3em;
            }
        }

        /* Extra Large Screens (1440px to 1919px) */
        @media (min-width: 1440px) and (max-width: 1919px) {
            .blog-container {
                max-width: 1400px;
                grid-template-columns: 2.5fr 1fr;
                gap: 50px;
            }
            
            .hero-section {
                height: 350px;
            }
            
            .hero-content h1 {
                font-size: 3em;
            }
            
            .article-content {
                padding: 50px;
            }
            
            .article-title {
                font-size: 2.3em;
            }
            
            .article-text {
                font-size: 1.2em;
            }
        }

        /* Large Screens (1200px to 1439px) */
        @media (min-width: 1200px) and (max-width: 1439px) {
            .blog-container {
                max-width: 1200px;
                grid-template-columns: 2fr 1fr;
                gap: 40px;
            }
            
            .hero-section {
                height: 300px;
            }
        }

        /* Medium-Large Screens (992px to 1199px) */
        @media (min-width: 992px) and (max-width: 1199px) {
            .blog-container {
                max-width: 960px;
                grid-template-columns: 1.8fr 1fr;
                gap: 30px;
                padding: 20px;
            }
            
            .hero-section {
                height: 280px;
            }
            
            .hero-content h1 {
                font-size: 2.2em;
            }
            
            .article-content {
                padding: 35px;
            }
            
            .article-title {
                font-size: 1.8em;
            }
            
            .article-text {
                font-size: 1.05em;
            }
        }

        /* Tablet Landscape (768px to 991px) */
        @media (min-width: 768px) and (max-width: 991px) {
            .blog-container {
                max-width: 750px;
                grid-template-columns: 1.5fr 1fr;
                gap: 25px;
                padding: 15px;
            }
            
            .hero-section {
                height: 250px;
            }
            
            .hero-content h1 {
                font-size: 2em;
            }
            
            .hero-content p {
                font-size: 1em;
            }
            
            .article-content {
                padding: 30px;
            }
            
            .article-title {
                font-size: 1.7em;
            }
            
            .article-text {
                font-size: 1em;
            }
            
            .services-list {
                padding: 20px;
            }
            
            .sidebar-content {
                padding: 15px;
            }
            
            .post-thumbnail {
                width: 60px;
                height: 45px;
            }
            
            .post-info h4 {
                font-size: 0.9em;
            }
            
            .cta-section {
                padding: 25px;
            }
        }

        /* Tablet Portrait (576px to 767px) */
        @media (min-width: 576px) and (max-width: 767px) {
            .blog-container {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 15px;
                max-width: 100%;
            }
            
            .hero-section {
                height: 220px;
            }
            
            .hero-content h1 {
                font-size: 1.8em;
            }
            
            .hero-content p {
                font-size: 1em;
            }
            
            .article-content {
                padding: 25px;
            }
            
            .article-title {
                font-size: 1.6em;
            }
            
            .article-text {
                font-size: 1em;
            }
            
            .article-meta {
                gap: 10px;
            }
            
            .services-list {
                padding: 20px;
            }
            
            .services-list ol {
                padding-left: 18px;
            }
            
            .sidebar {
                gap: 20px;
            }
            
            .sidebar-header {
                padding: 18px;
            }
            
            .sidebar-content {
                padding: 18px;
            }
        }

        /* Mobile Large (480px to 575px) */
        @media (min-width: 480px) and (max-width: 575px) {
            .blog-container {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 12px;
            }
            
            .hero-section {
                height: 200px;
                padding: 15px;
            }
            
            .hero-content h1 {
                font-size: 1.6em;
            }
            
            .hero-content p {
                font-size: 0.95em;
            }
            
            .article-content {
                padding: 20px;
            }
            
            .article-title {
                font-size: 1.4em;
            }
            
            .article-text {
                font-size: 0.95em;
            }
            
            .services-list {
                padding: 15px;
            }
            
            .services-list h3 {
                font-size: 1.15em;
            }
            
            .services-list ol {
                padding-left: 15px;
            }
            
            .services-list li {
                font-size: 0.95em;
                margin-bottom: 12px;
            }
            
            .recent-post {
                flex-direction: column;
                gap: 10px;
            }
            
            .post-thumbnail {
                width: 100%;
                height: 120px;
            }
            
            .post-info h4 {
                font-size: 0.9em;
            }
            
            .sidebar-header {
                padding: 15px;
                font-size: 1.1em;
            }
            
            .sidebar-content {
                padding: 15px;
            }
            
            .cta-section {
                padding: 20px;
            }
            
            .cta-section h3 {
                font-size: 1.2em;
            }
            
            .cta-section p {
                font-size: 0.95em;
            }
        }

        /* Mobile Small (320px to 479px) */
        @media (max-width: 479px) {
            .blog-container {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 10px;
            }
            
            .hero-section {
                height: 180px;
                padding: 15px;
            }
            
            .hero-content h1 {
                font-size: 1.4em;
                line-height: 1.2;
            }
            
            .hero-content p {
                font-size: 0.9em;
            }
            
            .article-content {
                padding: 15px;
            }
            
            .article-title {
                font-size: 1.3em;
                line-height: 1.3;
            }
            
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                font-size: 0.85em;
            }
            
            .badge {
                padding: 3px 8px;
                font-size: 0.7em;
                margin-top: 5px;
            }
            
            .article-text {
                font-size: 0.9em;
            }
            
            .services-list {
                padding: 12px;
                margin: 15px 0;
            }
            
            .services-list h3 {
                font-size: 1.1em;
            }
            
            .services-list ol {
                padding-left: 12px;
            }
            
            .services-list li {
                font-size: 0.85em;
                margin-bottom: 10px;
            }
            
            .highlight-box {
                padding: 15px;
                margin: 15px 0;
                font-size: 0.9em;
            }
            
            .recent-post {
                flex-direction: column;
                gap: 8px;
                margin-bottom: 15px;
                padding-bottom: 15px;
            }
            
            .post-thumbnail {
                width: 100%;
                height: 100px;
            }
            
            .post-info h4 {
                font-size: 0.85em;
                line-height: 1.3;
            }
            
            .sidebar-header {
                padding: 15px;
                font-size: 1em;
            }
            
            .sidebar-content {
                padding: 12px;
            }
            
            .cta-section {
                padding: 15px;
            }
            
            .cta-section h3 {
                font-size: 1.1em;
                margin-bottom: 10px;
            }
            
            .cta-section p {
                font-size: 0.85em;
                margin-bottom: 15px;
            }
            
            .cta-button {
                padding: 10px 20px;
                font-size: 0.85em;
            }
        }

        /* Print styles */
        @media print {
            .sidebar {
                display: none;
            }
            
            .blog-container {
                grid-template-columns: 1fr;
                max-width: none;
                padding: 0;
            }
            
            .hero-section {
                background: none !important;
                color: black !important;
                height: auto;
                padding: 20px 0;
            }
            
            .article-content {
                padding: 20px 0;
            }
            
            .highlight-box,
            .cta-section {
                background: none !important;
                border: 1px solid #ccc;
                color: black !important;
            }
            
            .highlight-box a {
                color: black !important;
            }
        }

        /* Accessibility improvements */
        @media (prefers-reduced-motion: reduce) {
            .recent-post {
                transition: none;
            }
            
            .cta-button {
                transition: none;
            }
            
            .post-info a {
                transition: none;
            }
        }

        /* High contrast mode */
        @media (prefers-contrast: high) {
            .hero-section {
                background: #000 !important;
                color: #fff !important;
            }
            
            .article-text {
                color: #000;
            }
            
            .sidebar-header {
                background: #000;
                color: #fff;
            }
        }