    /* Blog Detail Styles */
    .page-banner {
        background: #f8f9fa;
        padding: 80px 0;
        margin-bottom: 60px;
    }

    .page-banner .banner-title {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    /* H1 etiketinin SEO için optimize edilmesi */
    .blog-detail .blog-title {
        font-size: 32px;
        font-weight: 700;
        margin: 30px 0 20px;
        padding: 0 30px;
        line-height: 1.3;
        color: #333;
        /* SEO için önemli: H1 etiketi net görünür olmalı */
    }

    .page-banner .breadcrumb {
        display: flex;
        justify-content: center;
        font-size: 16px;
    }

    .page-banner .breadcrumb a {
        color: #333;
        text-decoration: none;
    }

    .page-banner .breadcrumb .separator {
        margin: 0 10px;
        color: #555;
    }

    .page-banner .breadcrumb .current {
        color: #0056b3;
    }

    .blog-detail-section {
        padding: 0 0 80px;
    }

    .blog-detail {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
        margin-bottom: 40px;
    }

    .blog-detail-image {
        position: relative;
        height: 500px;
        background-color: #f8f9fa;
        overflow: hidden;
    }

    .blog-detail-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .blog-meta {
        position: absolute;
        top: 20px;
        display: flex;
        gap: 15px;
        padding: 0 20px;
        width: 100%;
    }



    .blog-category {
        background: rgba(255, 255, 255, 0.9);
        padding: 5px 15px;
        border-radius: 5px;
        align-self: flex-start;
    }

    .blog-category a {
        color: #0056b3;
        font-weight: 600;
        text-decoration: none;
        font-size: 14px;
    }

    .blog-detail .blog-title {
        font-size: 28px;
        font-weight: 700;
        margin: 30px 0 20px;
        padding: 0 30px;
        line-height: 1.4;
    }

    .blog-content {
        padding: 0 30px 30px;
        line-height: 1.8;
        color: #444;
    }

    .blog-content p {
        margin-bottom: 20px;
    }

    .blog-content img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 20px 0;
    }

    .blog-content h2,
    .blog-content h3,
    .blog-content h4 {
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .blog-content h2 {
        font-size: 24px;
    }

    .blog-content h3 {
        font-size: 20px;
    }

    .blog-content h4 {
        font-size: 18px;
    }

    .blog-content ul,
    .blog-content ol {
        margin-bottom: 20px;
        padding-left: 20px;
    }

    .blog-content li {
        margin-bottom: 10px;
    }

    .blog-content figure {
        margin: 20px 0;
        text-align: center;
    }

    .blog-content figure img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .blog-content figure figcaption {
        color: #666;
        font-size: 14px;
        margin-top: 8px;
    }

    .blog-content blockquote {
        border-left: 4px solid #0056b3;
        padding: 15px 20px;
        margin: 20px 0;
        background: #f8f9fa;
        font-style: italic;
    }

    .blog-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }

    .blog-content table th,
    .blog-content table td {
        border: 1px solid #ddd;
        padding: 10px;
    }

    .blog-tags {
        padding: 20px 30px;
        border-top: 1px solid #eee;
    }

    .blog-tags h5 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .tags-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .tag-link {
        display: inline-block;
        padding: 5px 12px;
        background: #f5f5f5;
        color: #555;
        border-radius: 5px;
        font-size: 13px;
        text-decoration: none;
        transition: all 0.3s;
    }

    .tag-link:hover {
        background: #0056b3;
        color: #fff;
    }

    .blog-navigation {
        padding: 20px 30px;
        border-top: 1px solid #eee;
    }

    .nav-link {
        padding: 15px;
        border-radius: 8px;
        background: #f8f9fa;
        display: block;
        text-decoration: none;
        color: #333;
        transition: all 0.3s;
        height: 100%;
    }

    .nav-link:hover {
        background: #0056b3;
        color: #fff;
    }

    .nav-link.prev {
        text-align: left;
    }

    .nav-link.next {
        text-align: right;
    }

    .nav-title {
        display: block;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
        text-transform: uppercase;
    }

    .nav-link h6 {
        margin: 0;
        font-size: 16px;
    }

    /* Sidebar Styles */
    .blog-sidebar {
        position: sticky;
        top: 30px;
    }

    .sidebar-widget {
        background: #fff;
        border-radius: 12px;
        padding: 25px;
        margin-bottom: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    }

    .widget-title {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }

    .related-posts {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .related-post {
        display: flex;
        gap: 15px;
    }

    .post-image {
        width: 90px;
        height: 90px;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
        flex-shrink: 0;
    }

    .post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }



    .post-info {
        flex-grow: 1;
    }

    .post-title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
        line-height: 1.4;
    }

    .post-title a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s;
    }

    .post-title a:hover {
        color: #0056b3;
    }

    .share-buttons {
        display: flex;
        gap: 10px;
    }

    .share-buttons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        color: #fff;
        font-size: 16px;
        text-decoration: none;
        transition: all 0.3s;
    }

    .share-buttons a:hover {
        transform: translateY(-3px);
    }

    .share-buttons .facebook {
        background: #3b5998;
    }

    .share-buttons .twitter {
        background: #1da1f2;
    }

    .share-buttons .linkedin {
        background: #0077b5;
    }

    .share-buttons .whatsapp {
        background: #25d366;
    }

    .cta-widget {
        text-align: center;
        background: #f8f9fa;
    }

    .cta-widget h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .cta-widget p {
        margin-bottom: 20px;
        color: #555;
    }

    .cta-widget .btn {
        display: inline-block;
        padding: 12px 25px;
        background: #0056b3;
        color: #fff;
        border-radius: 6px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
    }

    .cta-widget .btn:hover {
        background: #003d82;
        transform: translateY(-3px);
    }

    @media (max-width: 991px) {
        .blog-sidebar {
            margin-top: 40px;
            position: static;
            top: auto;
        }

        .blog-detail-section .row {
            flex-direction: column;
        }

        .blog-detail-section .col-lg-8 {
            width: 100%;
            max-width: 100%;
            order: 1;
        }

        .blog-detail-section .col-lg-4 {
            width: 100%;
            max-width: 100%;
            order: 2;
        }
    }

    @media (max-width: 767px) {
        .page-banner {
            padding: 60px 0;
            margin-bottom: 40px;
        }

        .page-banner .banner-title {
            font-size: 28px;
        }

        .blog-detail-image {
            height: 300px;
        }

        .blog-detail .blog-title {
            font-size: 24px;
            padding: 0 20px;
        }

        .blog-content {
            padding: 0 20px 20px;
        }
    }
