html {
            scroll-behavior: smooth
        }

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

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

        .blog-card {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
            margin-bottom: 20px
        }

        .blog-card__img {
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid #ddd;
            aspect-ratio: 1.69
        }

        .blog-card__img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .3s ease
        }

        .blog-card__img:hover img {
            transform: scale(1.05)
        }

        .blog-card__heading {
            padding: 5px;
            font-size: 16px;
            color: #333;
            text-align: center;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            -webkit-line-clamp: 2
        }

        section#related-articles {
            margin: 50px 0;
            padding: 50px 0;
            background-color: #eef0f6
        }

        section#releated-articles .row [class^=col-] {
            margin: 10px 0
        }

        section#releated-articles .article-item {
            background-color: #fff;
            padding: 10px;
            height: 100%;
            display: flex;
            flex-direction: column
        }

        .text-center.mt-4 {
            margin-top: 10px;
            margin-bottom: 60px
        }

        #special-form {
            margin-top: 30px
        }

        .form-container {
            background-color: #fff;
            padding: 20px;
            border-radius: 17px;
            box-shadow: 0 0 10px rgba(0, 0, 0, .3);
            margin-bottom: 20px
        }

        .form-item-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px
        }

        .form-item {
            width: calc(50% - 10px)
        }

        .form-item label {
            display: block;
            font-weight: 700;
            margin-bottom: .5rem
        }

        .form-item input,
        .form-item select,
        .form-item textarea {
            width: 100%;
            padding: .75rem;
            border: 1px solid #ced4da;
            border-radius: .5rem
        }

        .form-item textarea {
            resize: vertical
        }

        .custom-button.apply-now-button {
            background-color: #021838;
            color: #fff;
            border: none;
            padding: .75rem 3rem;
            border-radius: 1rem;
            cursor: pointer;
            font-size: 1.25rem;
            font-weight: 700;
            transition: background-color .3s ease;
            display: block;
            margin-top: 20px
        }

        .notice p {
            margin: 0;
            font-size: 1rem;
            color: #333
        }

.back-to-academics {
            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-academics:hover {
            color: #033ea1;
        }

        .back-to-academics 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;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .academic-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;
            }
        }
