:root {
            --primary-color: #1a365d;
            --secondary-color: #d4af37;
            --accent-color: #c53030;
            --text-dark: #2d3748;
            --text-light: #f7fafc;
            --bg-light: #f8f9fa;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-dark);
            background-color: var(--bg-light);
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--primary-color);
            color: var(--text-light);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--secondary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent-color);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
        }
        .desktop-nav a:hover {
            background-color: rgba(212, 175, 55, 0.2);
            color: var(--secondary-color);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--secondary-color);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .desktop-nav a:hover::after {
            width: 80%;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--primary-color);
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 1rem 0;
        }
        .mobile-nav a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 1.2rem;
            display: block;
            padding: 0.8rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            background-color: rgba(212, 175, 55, 0.2);
        }
        .breadcrumb {
            background-color: #e2e8f0;
            padding: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--primary-color);
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }
        .search-section {
            background: linear-gradient(135deg, var(--primary-color), #2d4a7c);
            color: var(--text-light);
            padding: 2.5rem 0;
            text-align: center;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 0;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-btn {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            border: none;
            padding: 0 2rem;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            font-weight: bold;
        }
        .search-btn:hover {
            background-color: #e6c34f;
        }
        main {
            padding: 3rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 3px solid var(--secondary-color);
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: #718096;
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        article h2 {
            color: var(--primary-color);
            font-size: 2.2rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--secondary-color);
        }
        article h3 {
            color: var(--accent-color);
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.15);
            border-left: 5px solid var(--secondary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 2.5rem 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.01);
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #f0f4f8, #ffffff);
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            text-align: center;
            border-top: 5px solid var(--accent-color);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .interview {
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: 12px;
            margin: 2.5rem 0;
            border-left: 6px solid var(--primary-color);
        }
        .interview-quote {
            font-style: italic;
            font-size: 1.3rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            quotes: "“" "”";
        }
        .interview-quote::before {
            content: open-quote;
            color: var(--secondary-color);
            font-size: 2rem;
            vertical-align: bottom;
            line-height: 0;
        }
        .interview-quote::after {
            content: close-quote;
            color: var(--secondary-color);
            font-size: 2rem;
            vertical-align: bottom;
            line-height: 0;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-color);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #e2e8f0;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars .active {
            color: var(--secondary-color);
        }
        .rating-form input, .rating-form select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #cbd5e0;
            border-radius: 6px;
        }
        .rating-form button {
            width: 100%;
            padding: 0.9rem;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background-color: #2d4a7c;
        }
        .comment-widget textarea {
            width: 100%;
            height: 150px;
            padding: 1rem;
            border: 1px solid #cbd5e0;
            border-radius: 6px;
            resize: vertical;
            font-family: inherit;
        }
        .comment-widget button {
            background-color: var(--accent-color);
            color: white;
            padding: 0.9rem 2rem;
            border: none;
            border-radius: 6px;
            margin-top: 1rem;
            cursor: pointer;
            transition: var(--transition);
            font-weight: bold;
        }
        .comment-widget button:hover {
            background-color: #e53e3e;
        }
        .internal-links {
            background-color: #edf2f7;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-link {
            display: inline-block;
            background-color: white;
            padding: 1.2rem 2rem;
            margin: 0.8rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-left: 4px solid var(--primary-color);
        }
        .web-link:hover {
            transform: translateY(-5px);
            border-left-color: var(--secondary-color);
        }
        .web-link a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .web-link a:hover {
            color: var(--accent-color);
        }
        footer {
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h3 {
            color: var(--secondary-color);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.7rem;
        }
        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #cbd5e0;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #4a5568;
            color: #a0aec0;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .header-container, .breadcrumb ol, .article-meta, .footer-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 12px;
            }
            .search-input, .search-btn {
                width: 100%;
                border-radius: 0;
            }
            article {
                padding: 1.5rem;
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            article h3 {
                font-size: 1.5rem;
            }
        }
        @media print {
            header, .search-section, .internal-links, aside, footer {
                display: none;
            }
            body {
                color: black;
                background: white;
            }
            article {
                box-shadow: none;
                padding: 0;
            }
        }
