
        /* Blog Detail Page Specific Styles */
        .blog-detail-section {
            padding: 40px 0;
            background: var(--cs-site-background);
        }

        .blog-detail-header {
            text-align: center;
            margin-bottom: 10px;
        }

        .blog-detail-title {
            font-size: 48px;
            font-weight: 700;
            color: var(--cs-color-primary);
            margin-bottom: 20px;
            font-family: var(--font-primary);
        }

        /* Search Overlay Styles */
        .search-overlay-content form {
            display: flex;
            gap: 10px;
            position: relative;
            width: 100%;
        }

        .search-overlay-content input {
            flex: 1;
            padding: 20px 25px;
            font-size: 18px;
            font-family: var(--font-primary);
            border: none;
            border-radius: 50px;
            background: var(--cs-color-input);
            color: var(--cs-color-input-contrast);
            outline: none;
        }

        .search-submit-btn {
            padding: 12px 30px;
            background: var(--cs-color-button);
            color: white;
            border: none;
            border-radius: 50px;
            font-family: var(--font-primary);
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .search-submit-btn:hover {
            background: var(--cs-color-button-hover);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(114, 114, 255, 0.3);
        }

        .search-close-btn {
            position: static;
            background: rgba(0, 0, 0, 0.5);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .search-close-btn:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: rotate(90deg);
        }

        @media (max-width: 768px) {
            .search-overlay-content form {
                flex-direction: column;
            }
            
            .search-submit-btn {
                padding: 12px 20px;
                font-size: 14px;
                justify-content: center;
            }
            
            .search-close-btn {
                position: absolute;
                top: -60px;
                right: 0;
                background: rgba(0, 0, 0, 0.7);
            }
        }

        .topic-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }

        .topic-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--cs-layout-background);
            border: 1px solid var(--cs-color-border);
            border-radius: 30px;
            padding: 5px 12px;
            font-family: var(--font-primary);
            font-size: 15px;
            font-weight: 700;
            color: var(--cs-color-primary);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .topic-btn:hover {
            border-color: var(--cs-color-accent);
            color: var(--cs-color-accent);
            transform: translateY(-2px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .topic-icon {
            width: 36px;
            height: 36px;
            object-fit: contain;
        }

        /* Three Column Layout */
        .blog-detail-layout {
            display: flex;
            gap: 15px;
            position: relative;
        }

        /* Left Column - Sticky */
        .blog-left-column {
            width: 7%;
            position: sticky;
            top: 100px;
            align-self: flex-start;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .reading-time-card {
            background: white;
            border-radius: 50px;
            padding: 12px 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            text-align: center;
            display: inline-block;
            width: auto;
            position: relative;
            transition: all 0.3s ease;
        }

        .reading-time-value {
            font-size: 16px;
            font-weight: 600;
            color: var(--cs-color-primary);
            margin: 0;
        }

        /* Social Icons Vertical - Centered */
        .social-share-vertical {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .social-icons-vertical {
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }

        .social-icon-vertical {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            transition: all 0.3s ease;
            color: var(--cs-color-secondary);
            text-decoration: none;
        }

        .social-icon-vertical:hover {
            color: var(--cs-color-accent);
            transform: translateX(3px);
        }

        /* Middle Column - Content */
        .blog-middle-column {
            width: 63%;
        }

        /* Table of Contents */
        .table-of-contents {
            background: #F5F9FC;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 10px;
        }

        .table-of-contents h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--cs-color-accent);
            padding-bottom: 10px;
        }

        .toc-list {
            list-style: none;
            padding: 0;
        }

        .toc-list li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 8px;
        }

        .toc-list li::before {
            content: "●";
            color: var(--cs-color-accent);
            position: absolute;
            left: 0;
            top: 5px;
            font-size: 12px;
        }

        .toc-list a {
            color: var(--cs-color-accent);
            text-decoration: none;
            font-size: 16px;
            font-weight: 700;
            transition: color 0.3s ease;
            display: block;
            padding: 1px 0;
            text-decoration: underline;
        }

        .toc-list a:hover {
            text-decoration: none;
        }

        /* Blog Content */
        .blog-content-article {
            padding: 10px;
        }

        .content-section {
            margin-bottom: 50px;
            scroll-margin-top: 100px;
        }

        .content-section h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--cs-color-primary);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--cs-color-accent);
        }

        .content-section p {
            font-size: 18px;
            line-height: 1.8;
            color: var(--cs-color-primary);
            margin-bottom: 20px;
            text-align: justify;
        }

        /* Content Image Section */
        .content-image-section {
            margin: 40px 0;
            text-align: center;
        }

        .blog-featured-image {
            margin: 0;
            padding: 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .blog-featured-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
        }

        .featured-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-featured-image:hover .featured-image {
            transform: scale(1.02);
        }

        .image-caption {
            padding: 15px 20px;
            font-size: 14px;
            color: var(--cs-color-secondary);
            background: var(--cs-color-highlight-background);
            text-align: center;
            font-style: italic;
            margin: 0;
            border-top: 1px solid var(--cs-color-border);
        }

        /* Contact Box */
        .contact-box {
            background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 50%, #FFE66D 100%);
            padding: 45px 35px;
            border-radius: 20px;
            text-align: center;
            margin: 40px 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
        }

        .contact-box h3 {
            font-size: 32px;
            font-weight: 800;
            color: white;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .contact-box p {
            font-size: 16px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 30px;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-btn {
            display: inline-block;
            background: white;
            color: #FF6B6B;
            padding: 14px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .contact-btn:hover {
            transform: translateY(-3px);
            background: linear-gradient(135deg, #FF8C42, #FF6B6B);
            color: white;
        }

        /* Hashtags */
        .hashtags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 30px 0;
            padding-top: 20px;
            border-top: 1px solid var(--cs-color-border);
        }

        .hashtag {
            display: inline-block;
            background: var(--cs-color-highlight-background);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 900;
            color: var(--cs-color-accent);
            text-decoration: none;
        }

        /* Post Meta */
        .post-meta-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-top: 1px solid var(--cs-color-border);
            border-bottom: 1px solid var(--cs-color-border);
            margin: 30px 0;
        }

        .post-author-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Post Navigation */
        .post-nav {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin-top: 40px;
        }

        .prev-post,
        .next-post {
            flex: 1;
            text-decoration: none;
            background: white;
            padding: 20px 25px;
            border-radius: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            border: 1px solid var(--cs-color-border);
        }

        .prev-post:hover,
        .next-post:hover {
            transform: translateX(-5px);
            box-shadow: 0 8px 24px rgba(114, 114, 255, 0.15);
            border-color: transparent;
        }

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

        .prev-post span,
        .next-post span {
            position: relative;
            z-index: 1;
            display: block;
        }

        .prev-post .nav-label,
        .next-post .nav-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--cs-color-accent);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .prev-post .nav-title,
        .next-post .nav-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--cs-color-primary);
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .prev-post:hover .nav-title,
        .next-post:hover .nav-title {
            color: var(--cs-color-accent);
        }

        .prev-post .nav-label::before {
            content: '← ';
            font-size: 14px;
        }

        .next-post .nav-label::after {
            content: ' →';
            font-size: 14px;
        }

        /* Right Column */
        .blog-right-column {
            width: 30%;
            top: 100px;
            align-self: flex-start;
        }

        .right-widget {
            background: white;
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }

        .right-widget h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--cs-color-primary);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--cs-color-accent);
        }

        .recent-posts-list {
            list-style: none;
            padding: 0;
        }

        .recent-posts-list li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--cs-color-border);
        }

        .recent-posts-list li:last-child {
            border-bottom: none;
        }

        .recent-posts-list a {
            text-decoration: none;
            color: var(--cs-color-primary);
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .recent-posts-list a:hover {
            color: var(--cs-color-accent);
        }

        .newsletter-widget input {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--cs-color-border);
            border-radius: 8px;
            font-family: var(--font-primary);
            margin-bottom: 10px;
        }

        .newsletter-widget button {
            width: 100%;
            background: var(--cs-color-button);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
        }

        /* Services List */
        .services-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .service-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--cs-color-border);
        }

        .service-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .service-icon {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            border-radius: 12px;
            overflow: hidden;
            background: var(--cs-color-highlight-background);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .service-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-content {
            flex: 1;
        }

        .service-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--cs-color-primary);
            margin-bottom: 5px;
            line-height: 1.3;
            text-transform: capitalize;
        }

        .service-description {
            font-size: 13px;
            line-height: 1.5;
            color: var(--cs-color-secondary);
            margin: 0;
        }

        @media (max-width: 1024px) {
            .blog-detail-layout {
                flex-direction: column;
            }
            
            .blog-left-column,
            .blog-middle-column,
            .blog-right-column {
                width: 100%;
                position: static;
            }
            
            .social-icons-vertical {
                flex-direction: row;
                justify-content: center;
                gap: 20px;
            }
            
            .blog-detail-title {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            .post-nav {
                flex-direction: column;
                gap: 15px;
            }
            
            .prev-post:hover,
            .next-post:hover {
                transform: translateX(0);
            }
            
            .prev-post {
                text-align: center;
            }
            
            .next-post {
                text-align: center;
            }
        }