        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Arial', sans-serif;
        }
        :root {
            --primary-color: #2563eb;
            --secondary-color: #7c3aed;
            --accent-color: #f59e0b;
            --text-color: #1f2937;
            --light-bg: #f8fafc;
            --dark-bg: #1e293b;
            --border-color: #e2e8f0;
            --success-color: #10b981;
            --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --hover-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        body {
            color: var(--text-color);
            background-color: #ffffff;
            line-height: 1.6;
            font-size: 16px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: white;
            transition: transform 0.3s ease;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        .logo i {
            color: var(--accent-color);
        }
        .nav-desktop {
            display: flex;
            gap: 1.5rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 70%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--dark-bg);
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            z-index: 999;
            animation: slideDown 0.3s ease;
        }
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: background-color 0.3s;
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--light-bg);
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            color: #6b7280;
        }
        .search-container {
            margin: 2rem auto;
            max-width: 600px;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
        }
        .search-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        .search-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 0 1.5rem;
            cursor: pointer;
            transition: background-color 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-btn:hover {
            background-color: #1d4ed8;
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        .article-header h1 {
            font-size: 2.5rem;
            color: var(--dark-bg);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            color: #6b7280;
            font-size: 0.9rem;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .content-section h2 {
            font-size: 1.8rem;
            color: var(--dark-bg);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-color);
        }
        .content-section h3 {
            font-size: 1.4rem;
            color: var(--dark-bg);
            margin: 1.5rem 0 1rem;
        }
        .content-section p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .highlight {
            background-color: rgba(245, 158, 11, 0.1);
            border-left: 4px solid var(--accent-color);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 4px 4px 0;
        }
        .code-block {
            background-color: #1e293b;
            color: #e2e8f0;
            padding: 1.5rem;
            border-radius: 8px;
            overflow-x: auto;
            margin: 1.5rem 0;
            font-family: 'Courier New', monospace;
        }
        .code-block code {
            font-size: 0.95rem;
            line-height: 1.5;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            display: block;
            border-radius: 8px;
            box-shadow: var(--card-shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .article-image:hover {
            transform: translateY(-5px);
            box-shadow: var(--hover-shadow);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #6b7280;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background-color: var(--light-bg);
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: var(--card-shadow);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        .stat-label {
            color: var(--text-color);
            font-weight: 500;
        }
        .interview {
            background-color: #f0f9ff;
            border-radius: 8px;
            padding: 2rem;
            margin: 2rem 0;
            border-left: 4px solid var(--primary-color);
        }
        .interview-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .interview-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-color);
        }
        .interview-info h4 {
            font-size: 1.2rem;
            color: var(--dark-bg);
            margin-bottom: 0.2rem;
        }
        .interview-info p {
            color: #6b7280;
            font-size: 0.9rem;
        }
        .interview-qna {
            margin-top: 1.5rem;
        }
        .question {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        .answer {
            margin-bottom: 1.5rem;
            padding-left: 1rem;
            border-left: 2px solid var(--border-color);
        }
        .rating-container {
            background-color: var(--light-bg);
            padding: 2rem;
            border-radius: 8px;
            margin: 3rem 0;
            text-align: center;
        }
        .rating-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark-bg);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .star {
            font-size: 2rem;
            color: #d1d5db;
            cursor: pointer;
            transition: color 0.3s, transform 0.2s;
        }
        .star:hover,
        .star.active {
            color: var(--accent-color);
            transform: scale(1.1);
        }
        .rating-form {
            max-width: 500px;
            margin: 0 auto;
        }
        .rating-form textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            margin-bottom: 1rem;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
        }
        .rating-form textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        .submit-btn {
            background-color: var(--success-color);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .submit-btn:hover {
            background-color: #0da271;
        }
        .comments-container {
            margin: 3rem 0;
        }
        .comments-title {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--dark-bg);
        }
        .comment-form {
            background-color: var(--light-bg);
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-size: 1rem;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        .comments-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .comment {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--card-shadow);
            border-left: 3px solid var(--primary-color);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .comment-author {
            font-weight: 600;
            color: var(--dark-bg);
        }
        .comment-date {
            color: #6b7280;
            font-size: 0.9rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
            padding: 2rem 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        .web-link {
            padding: 0.8rem;
            background-color: var(--light-bg);
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: #e0e7ff;
            transform: translateX(5px);
        }
        .web-link a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: var(--accent-color);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #374151;
            color: #9ca3af;
            font-size: 0.9rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .bold-text {
            font-weight: 700;
            color: var(--dark-bg);
        }
        .text-center {
            text-align: center;
        }
        .mb-1 { margin-bottom: 0.5rem; }
        .mb-2 { margin-bottom: 1rem; }
        .mb-3 { margin-bottom: 1.5rem; }
        .mb-4 { margin-bottom: 2rem; }
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 2rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            .content-section h2 {
                font-size: 1.5rem;
            }
            .content-section h3 {
                font-size: 1.2rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .interview-header {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .logo {
                font-size: 1.5rem;
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-btn {
                padding: 0.8rem;
                justify-content: center;
            }
        }
        @media print {
            .nav-desktop, .hamburger, .search-container, 
            .rating-container, .comment-form, .web-links,
            footer {
                display: none;
            }
            body {
                font-size: 12pt;
                line-height: 1.5;
            }
            .article-header {
                border-bottom: 2px solid #000;
            }
            .content-section h2 {
                page-break-after: avoid;
            }
            .content-section p {
                text-align: left;
            }
        }
