html {
            scroll-behavior: smooth
        }

        button#toggle-contents{
            display: none !important;
        }

        .article img {
            max-width: 100%;
            height: auto !important;
            aspect-ratio: auto !important
        }

        #headings {
            position: relative
        }

        #headings .breadcrumb-container {
            position: relative;
            color: #021838;
            padding-left: 0;
            margin-bottom: 20px;
            max-width: 100%;
            white-space: normal
        }

        #headings .breadcrumb-wrapper {
            display: flex;
            flex-wrap: wrap
        }

        #headings .breadcrumb-item {
            display: inline;
            font-family: Inter;
            font-size: 15px;
            font-weight: 400;
            line-height: 13.5px;
            text-align: left;
            padding-bottom: 5px;
            position: relative;
            white-space: normal;
            word-wrap: break-word
        }

        #headings .breadcrumb-item a {
            color: #021838 !important;
            text-decoration: none
        }

        #headings .breadcrumb-separator {
            display: inline-block;
            margin: 0 20px;
            align-self: center
        }

        #headings .breadcrumb-icon {
            width: 4.5px;
            height: 9px;
            opacity: 1;
            margin: 0;
            margin-bottom: 8px
        }

        #headings .breadcrumb-line {
            border-bottom: 1px solid #021838;
            width: 50%;
            margin-top: 10px
        }

        @media (min-width:1025px) {
            #hero-banner .breadcrumb-container {
                margin-left: -900px
            }
        }

        @media (max-width:768px) {
            #hero-banner .breadcrumb-container {
                margin-right: 0;
                overflow-x: hidden
            }
            #hero-banner .breadcrumb-wrapper {
                flex-wrap: wrap
            }
        }

        @media screen and (max-width:768px) {
            #headings .breadcrumb-container {
                margin-left: 0 !important;
                text-align: justify
            }
        }

        .back-to-blogs {
            display: inline-flex;
            align-items: center;
            color: #021838;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 20px;
            transition: color 0.3s ease;
        }

        .back-to-blogs:hover {
            color: #033ea1;
        }

        .back-to-blogs i {
            margin-right: 8px;
            font-size: 12px;
        }

        /* Table of Contents Styles */
        .content-wrapper {
            display: flex;
            gap: 30px;
            align-items: flex-start;
        }

        #contents-section {
            width: 250px;
            padding: 20px;
            position: sticky;
            top: 100px;
            flex-shrink: 0;
        }

        .main-content {
            flex: 1;
            min-width: 0;
        }

        .main-content h1 {
            font-size: 26px;
            text-align: left;
        }

        /* .home-mid-stage/.middle-banner ile ayni gri-sahne + beyaz-kart deseni:
           #main'in kendi beyaz arka plani olmadan 20px margin/40px radius'u
           sayfanin beyaz zemininde gorunmuyordu. */
        .blog-content-stage {
            background: #F5F6F8;
        }

        #main {
            background: #fff;
            margin: 0 20px;
            border-radius: 40px;
            /* dar ekranda sabit 150px yan padding icerigi neredeyse hic yer
               birakmadan sikistiriyordu; sitedeki diger gri-sahne kartlarla
               (section-two, doctor-carts vb.) ayni clamp() deseni. */
            padding: clamp(24px, 8vw, 80px) clamp(20px, 10.5vw, 150px);
        }

        .contents-header {
            font-size: 16px;
            font-weight: 600;
            color: #021838;
            margin-bottom: 15px;
            padding-bottom: 8px;
        }

        #contents {
            font-size: 13px;
            line-height: 1.6;
            display: block;
        }

        #contents ol {
            padding-left: 0;
            list-style: none;
            counter-reset: item;
        }

        #contents li {
            margin-bottom: 8px;
            counter-increment: item;
            position: relative;
            padding-left: 25px;
        }

        #contents li:before {
            content: counter(item) ".";
            position: absolute;
            left: 0;
            color: #666D7C;
            font-weight: 600;
        }

        #contents li a {
            color: #666D7C;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        #contents li a:hover {
            color: #021838;
            text-decoration: underline;
        }

        .ai-summary-btn:hover {
            box-shadow: 0 4px 15px #c9d0fb !important;
        }

        .ai-summary-btn:active {
            transform: translateY(0);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .blog-navigation {
                padding: 0 10px;
            }
            
            .content-wrapper {
                flex-direction: column;
                gap: 20px;
            }
            
            #contents-section {
                width: 100%;
                position: relative;
                top: auto;
                order: -1;
            }
            
            .contents-header {
                font-size: 16px;
            }

            .ai-summary-btn {
                font-size: 13px !important;
                padding: 10px 16px !important;
            }
            
            .d-flex.justify-content-end.mb-3 {
                justify-content: center !important;
            }
        }
