.blog-detail-section { padding: 60px 20px; max-width: 1200px; margin: 0 auto; background: #fff; }
        .breadcrumb-blog { margin-bottom: 20px; font-size: 14px; color: #666; }
        .breadcrumb-blog a { color: #1d670d; text-decoration: none; font-weight: 600; }
        .breadcrumb-blog a:hover { text-decoration: underline; }
        
        .blog-layout { display: flex; gap: 40px; flex-wrap: wrap; }
        .blog-main-col { flex: 0 0 calc(75% - 20px); max-width: calc(75% - 20px); }
        .blog-sidebar-col { flex: 0 0 calc(25% - 20px); max-width: calc(25% - 20px); }
        
        /* Main Column Styling */
        .blog-detail-title { font-size: 38px; color: #111; margin-bottom: 20px; font-weight: 800; line-height: 1.3; }
        .blog-detail-meta { font-size: 15px; color: #1d670d; font-weight: 600; margin-bottom: 30px; display: inline-flex; align-items: center; gap: 15px; background: #f4fbf3; padding: 10px 20px; border-radius: 8px; }
        .blog-detail-meta span { display: flex; align-items: center; gap: 8px; }
        .blog-detail-img { width: 100%; max-height: 500px; object-fit: cover; border-radius: 12px; margin-bottom: 40px; box-shadow: 0 8px 25px rgba(0,0,0,0.08); border: 1px solid #eee; }
        .blog-detail-content { font-size: 17px; color: #444; line-height: 1.8; }
        .blog-detail-content h2, .blog-detail-content h3 { color: #222; margin-top: 40px; margin-bottom: 20px; font-weight: 700; border-bottom: 2px solid #f1f3f5; padding-bottom: 10px; }
        .blog-detail-content p { margin-bottom: 25px; }
        .blog-detail-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 30px 0; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
        .blog-detail-content ul, .blog-detail-content ol { margin-bottom: 25px; padding-left: 20px; }
        .blog-detail-content li { margin-bottom: 10px; }
        .blog-detail-content blockquote { border-left: 4px solid #1d670d; background: #f9f9f9; padding: 15px 20px; font-style: italic; color: #555; margin: 30px 0; border-radius: 0 8px 8px 0; }
        
        /* Sidebar Styling */
        .sidebar-title { font-size: 20px; font-weight: 700; color: #111; margin-bottom: 25px; padding-bottom: 10px; border-bottom: 2px solid #1d670d; display: inline-block; }
        .recent-blog-item { display: flex; gap: 15px; margin-bottom: 20px; text-decoration: none; color: inherit; align-items: center; transition: transform 0.2s; }
        .recent-blog-item:hover { transform: translateX(5px); }
        .recent-blog-img { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
        .recent-blog-info h4 { font-size: 14px; font-weight: 600; color: #222; margin-bottom: 5px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .recent-blog-info span { font-size: 12px; color: #777; }
        
        @media(max-width: 991px) {
            .blog-main-col { flex: 0 0 100%; max-width: 100%; }
            .blog-sidebar-col { flex: 0 0 100%; max-width: 100%; margin-top: 40px; }
        }
        @media(max-width: 768px) {
            .blog-detail-title { font-size: 28px; }
            .blog-detail-content { font-size: 16px; }
            .blog-detail-meta { font-size: 14px; padding: 8px 15px; }
        }

