 :root {
            --color-primary: #2e7d32;
            --color-secondary: #8d6e63;
            --color-accent: #fbc02d;
            --color-light: #f8f9fa;
            --color-dark: #1b5e20;
        }

        /* Hero Section (Reused from previous design) */
        .scheme-hero-section {
            background-color: #f1f8f1; border-bottom: 1px solid #dee2e6;
            padding: 2.5rem 0; text-align: center;
        }
        .scheme-hero-section .entry-category a {
            background-color: var(--color-primary); color: #fff; padding: 5px 15px;
            border-radius: 20px; font-size: 0.9rem; text-decoration: none;
            display: inline-block; margin-bottom: 1rem;
        }
        .scheme-hero-section .entry-title { font-size: 2.5rem; font-weight: 700; color: var(--color-dark); margin-bottom: 1rem; }
        .scheme-hero-section .entry-meta { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1.5rem; font-size: 0.9rem; color: #6c757d; }
        
        /* Timeline Layout Styles */
        .timeline-container-wrapper { padding: 3rem 0; }
        .timeline-intro { text-align: center; max-width: 700px; margin: 0 auto 3rem auto; }
        .timeline-intro h2 { font-size: 2rem; font-weight: 700; color: var(--color-dark); margin-bottom: 1rem; }
        .timeline-intro p { font-size: 1.1rem; color: #495057; }

        .timeline-container { position: relative; max-width: 900px; margin: 0 auto; }
        .timeline-container::after { /* The central line */
            content: '';
            position: absolute;
            width: 4px;
            background-color: #e9ecef;
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
            z-index: 1;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
        }
        /* The circle on the timeline */
        .timeline-item .timeline-icon {
            position: absolute;
            width: 50px;
            height: 50px;
            right: -25px;
            top: 15px;
            background-color: var(--color-primary);
            border: 4px solid #FFF;
            border-radius: 50%;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #fff;
        }
        /* Place the item to the left */
        .timeline-left { left: 0; }
        /* Place the item to the right */
        .timeline-right { left: 50%; }
        /* Adjust the icon position for right-sided items */
        .timeline-right .timeline-icon { left: -25px; }

        .timeline-content {
            padding: 20px 30px;
            background-color: white;
            position: relative;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            border: 1px solid #eee;
        }
        .timeline-content h4 {
            margin-top: 0;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--color-dark);
        }
        .timeline-content p, .timeline-content ul, .timeline-content div { font-size: 1rem; line-height: 1.6; }
        
        /* Responsive styles for the timeline */
        @media screen and (max-width: 768px) {
            .timeline-container::after { left: 31px; }
            .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
            .timeline-item .timeline-icon { left: 6px; }
            .timeline-left, .timeline-right { left: 0%; }
        }

        /* --- PRESERVED STYLING FOR RELATED CONTENT TABS (AS REQUESTED) --- */
        .related-content-minimal { padding: 30px 20px; background-color: #f8f9fa; border-radius: 12px; margin-top: 40px; border: 1px solid #e0e0e0; }
        .related-content-minimal .section-heading h2 { font-family: 'Mukta', serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 25px; color: #2e7d32; text-align: center; position: relative; padding-bottom: 15px; }
        .related-content-minimal .section-heading h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background-color: #2e7d32; }
        .related-content-tabs-minimal { border-bottom: 1px solid #e0e0e0; margin-bottom: 25px; display: flex; justify-content: center; }
        .related-content-tabs-minimal .nav-link { border: none; border-bottom: 3px solid transparent; color: #5f5f5f; font-weight: 700; padding: 0.5rem 1rem; font-size: 1rem; margin-bottom: -1px; transition: all 0.3s ease; }
        .related-content-tabs-minimal .nav-link.active, .related-content-tabs-minimal .nav-link:hover { color: #2e7d32; border-bottom-color: #2e7d32; background-color: transparent; }
        .related-content-tabs-minimal .nav-link .badge { margin-left: 8px; background-color: #2e7d32 !important; }
        .related-links-list { list-style: none ; padding: 0; margin: 0; }
        .related-links-list li { border-bottom: 1px solid #eee; }
        .related-links-list li:last-child { border-bottom: none; }
        .related-links-list a { display: flex; align-items: center; justify-content: space-between; padding: 12px 10px; text-decoration: none; color: #212121; font-weight: 500; transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out; border-radius: 5px; }
        .related-links-list a:hover { background-color: #e9ecef; color: #2e7d32; }
        .related-links-list a .link-title { display: flex; align-items: center; gap: 12px; }
        .related-links-list a i { color: #2e7d32; font-size: 1.1rem; width: 20px; text-align: center; }
        .related-links-list .meta-info { font-size: 0.85rem; color: #5f5f5f; flex-shrink: 0; padding-left: 15px; }