:root {
            --maratha-saffron: #FF9933;
            --maratha-green: #138808;
            --maratha-blue: #000080;
            --gold-accent: #D4AF37;
            --bronze-dark: #8C7853;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .maratha-header {
            background: linear-gradient(135deg, var(--maratha-saffron) 0%, var(--gold-accent) 100%);
            color: white;
            padding: 2rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-size: 2.5rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            color: var(--maratha-blue);
        }
        .nav-custom {
            background: var(--maratha-blue) !important;
        }
        .nav-custom .nav-link {
            color: white !important;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-custom .nav-link:hover {
            color: var(--gold-accent) !important;
            transform: translateY(-2px);
        }
        .content-section {
            background: white;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
            padding: 2.5rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        h1, h2, h3 {
            color: var(--maratha-blue);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            border-bottom: 3px solid var(--maratha-saffron);
            padding-bottom: 0.5rem;
            font-size: 2.5rem;
        }
        h2 {
            border-left: 5px solid var(--maratha-green);
            padding-left: 1rem;
            font-size: 2rem;
        }
        h3 {
            color: var(--bronze-dark);
            font-size: 1.5rem;
        }
        .key-term {
            background: linear-gradient(120deg, var(--gold-accent) 0%, var(--gold-accent) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.3em;
            background-position: 0 88%;
            font-weight: 700;
            padding: 0.1rem 0.2rem;
        }
        .feature-icon {
            color: var(--maratha-saffron);
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }
        .image-container {
            border: 3px solid var(--gold-accent);
            border-radius: 8px;
            overflow: hidden;
            margin: 2rem 0;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .image-container img {
            transition: transform 0.5s ease;
        }
        .image-container:hover img {
            transform: scale(1.03);
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff9e6 0%, #ffefc6 100%);
            border-left: 5px solid var(--maratha-saffron);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .maratha-footer {
            background: var(--maratha-blue);
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        @media (max-width: 768px) {
            .logo-text {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
        .toc-container {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border-left: 4px solid var(--maratha-green);
        }
        .toc-title {
            color: var(--maratha-blue);
            font-weight: bold;
            margin-bottom: 1rem;
        }
        .toc-list {
            list-style-type: none;
            padding-left: 0;
        }
        .toc-list li {
            margin-bottom: 0.5rem;
            padding-left: 1rem;
            border-left: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .toc-list li:hover {
            border-left: 3px solid var(--maratha-saffron);
            padding-left: 1.5rem;
        }
        .toc-list a {
            color: #555;
            text-decoration: none;
        }
        .toc-list a:hover {
            color: var(--maratha-blue);
        }
