/* Tedavi Yontemleri page styles */
.page-header {
            padding: 180px 0 100px;
            background: var(--gradient-primary);
            color: var(--white);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .page-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .page-title {
            font-size: 52px;
            margin-bottom: 15px;
            color: var(--white);
        }

        .page-subtitle {
            font-size: 18px;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Section Styles */
        .section {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(23, 165, 137, 0.1);
            color: var(--accent-teal);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 42px;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 17px;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* TOC Strip */
        .toc-strip {
            background: var(--primary-dark);
            border-top: 1px solid rgba(255,255,255,0.08);
            position: static;
            top: auto;
            z-index: 100;
        }

        .toc-inner {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 16px;
            display: grid;
            grid-template-columns: repeat(8, minmax(0, 1fr));
            gap: 0;
            align-items: stretch;
        }

        .toc-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 16px 8px;
            text-decoration: none;
            color: rgba(255,255,255,0.7);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.03em;
            transition: all 0.3s ease;
            border-right: 1px solid rgba(255,255,255,0.08);
            white-space: nowrap;
        }

        .toc-item:last-child { border-right: none; }
        .toc-item:hover { color: var(--accent-teal); background: rgba(255,255,255,0.05); }
        
        .toc-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px; height: 24px;
            border-radius: 50%;
            background: rgba(23, 165, 137, 0.3);
            color: var(--accent-teal);
            font-size: 11px;
            flex-shrink: 0;
        }

        /* Chapter Styles */
        .chapter {
            padding: 80px 0;
            border-bottom: 1px solid var(--border-light);
        }

        .chapter:last-child {
            border-bottom: none;
        }

        .chapter-header {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            margin-bottom: 50px;
        }

        .chapter-num {
            font-family: 'Playfair Display', serif;
            font-size: 80px;
            font-weight: 700;
            line-height: 1;
            color: rgba(23, 165, 137, 0.15);
            flex-shrink: 0;
            margin-top: -10px;
            user-select: none;
        }

        .chapter-title-block {}
        
        .chapter-label {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent-teal);
            margin-bottom: 8px;
        }

        .chapter-title {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--primary-dark);
            line-height: 1.2;
        }

        .intro-para {
            font-size: 18px;
            font-weight: 400;
            color: var(--text-light);
            line-height: 1.8;
            border-left: 4px solid var(--accent-teal);
            padding-left: 24px;
            margin-bottom: 50px;
            max-width: 900px;
        }

        /* Content Sections */
        .content-section {
            margin-bottom: 40px;
        }

        .content-section-title {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--border-light);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .content-section-title i {
            color: var(--accent-teal);
            font-size: 20px;
        }

        .content-section p {
            color: var(--text-light);
            margin-bottom: 16px;
            font-size: 16px;
            line-height: 1.8;
        }

        /* Subsection Cards */
        .subsection-card {
            background: var(--white);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 24px;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
        }

        .subsection-card:hover {
            box-shadow: var(--shadow-medium);
            transform: translateY(-3px);
        }

        .subsection-title {
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent-teal);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .subsection-title::before {
            content: '';
            width: 30px;
            height: 3px;
            background: var(--accent-teal);
            border-radius: 2px;
        }

        .subsection-card p {
            margin-bottom: 12px;
        }

        .subsection-card p:last-child {
            margin-bottom: 0;
        }

        /* Purpose List */
        .purpose-list {
            list-style: none;
            margin: 20px 0;
        }

        .purpose-list li {
            display: flex;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid var(--border-light);
            font-size: 15px;
            line-height: 1.7;
        }

        .purpose-list li:last-child { border-bottom: none; }

        .purpose-icon {
            width: 36px; height: 36px;
            border-radius: 50%;
            background: var(--gradient-accent);
            color: #fff;
            display: flex; align-items: center; justify-content: center;
            font-size: 14px;
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .purpose-term {
            font-weight: 700;
            color: var(--primary-dark);
            display: block;
            margin-bottom: 4px;
            font-size: 16px;
        }

        /* Card Grid */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
            margin: 30px 0;
        }

        .info-card {
            background: var(--white);
            border: 1px solid var(--border-light);
            border-top: 4px solid var(--accent-teal);
            border-radius: 0 0 16px 16px;
            padding: 24px;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .card-name {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            font-size: 18px;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }

        .card-desc {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-light);
        }

        /* Highlight Boxes */
        .highlight-box {
            background: linear-gradient(135deg, #e8f4f2 0%, #f0f7f6 100%);
            border: 1px solid #b2d8d3;
            border-left: 4px solid var(--accent-teal);
            border-radius: 0 12px 12px 0;
            padding: 24px 28px;
            margin: 30px 0;
            font-size: 15px;
            line-height: 1.8;
        }

        .highlight-box strong { 
            color: var(--accent-teal);
            font-weight: 700;
        }

        .callout-box {
            background: var(--primary-dark);
            color: rgba(255,255,255,0.9);
            border-radius: 12px;
            padding: 28px 32px;
            margin: 30px 0;
            font-size: 15px;
            line-height: 1.8;
        }

        .callout-box strong { 
            color: var(--accent-gold);
            font-weight: 700;
        }

        .accent-box {
            background: #fdf4f2;
            border: 1px solid #e8c8c0;
            border-left: 4px solid #b5462a;
            border-radius: 0 12px 12px 0;
            padding: 24px 28px;
            margin: 30px 0;
            font-size: 15px;
            line-height: 1.8;
        }

        .accent-box strong {
            color: #b5462a;
            font-weight: 700;
        }

        /* Alternating Backgrounds */
        .bg-light { background: var(--light-bg); }
        .bg-white { background: var(--white); }

        /* Responsive */
        @media (max-width: 1200px) {
            .toc-inner {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                padding: 0 14px;
            }

            .toc-item {
                padding: 15px 14px;
                font-size: 13px;
            }
        }

        @media (max-width: 992px) {
            .page-title { font-size: 36px; }
            .section-title { font-size: 32px; }
            
            .chapter-header { flex-direction: column; gap: 20px; }
            .chapter-num { font-size: 60px; margin-top: 0; }
            .chapter-title { font-size: 28px; }

            .toc-inner {
                display: flex;
                flex-wrap: nowrap;
                justify-content: flex-start;
                overflow-x: auto;
            }

            .toc-item {
                flex: 0 0 auto;
            }
        }

        @media (max-width: 768px) {
            .card-grid { grid-template-columns: 1fr; }
            .chapter { padding: 60px 0; }
            .intro-para { font-size: 16px; }
        }

.chapter { scroll-margin-top: 150px; }
@media (max-width: 992px) {
    .chapter { scroll-margin-top: 138px; }
}
@media (max-width: 768px) {
    .chapter { scroll-margin-top: 126px; }
}

