* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.6;
        }
        :root {
            --primary: #2a4365;
            --secondary: #c53030;
            --accent: #f6ad55;
            --light: #f7fafc;
            --dark: #1a202c;
            --gray: #718096;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            max-width: 100vw;
            overflow-x: hidden;
        }
        .header {
            background: linear-gradient(135deg, var(--primary), #1a365d);
            color: white;
            padding: 1rem 2rem;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: white;
            text-decoration: none;
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            color: var(--accent);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
        }
        .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background: var(--primary);
            flex-direction: column;
            padding: 1rem;
            display: none;
            z-index: 999;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile .nav-link {
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background-color: #edf2f7;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid #cbd5e0;
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--gray);
        }
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        .sidebar {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        @media (max-width: 992px) {
            .sidebar {
                position: static;
            }
        }
        .search-box {
            margin-bottom: 2rem;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #cbd5e0;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-input:focus {
            border-color: var(--primary);
        }
        .search-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: #1a365d;
        }
        h1 {
            color: var(--primary);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 0.5rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        h2 {
            color: var(--secondary);
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            padding-left: 0.5rem;
            border-left: 5px solid var(--accent);
        }
        h3 {
            color: var(--dark);
            font-size: 1.5rem;
            margin: 1.8rem 0 0.8rem;
        }
        .content-section {
            margin-bottom: 2.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.1rem;
            color: #444;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 4px solid var(--accent);
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        b, strong {
            color: var(--primary);
            font-weight: 700;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            margin: 2rem auto;
            display: block;
            box-shadow: var(--shadow);
            transition: transform 0.5s ease;
        }
        .article-image:hover {
            transform: scale(1.01);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .user-interaction {
            background: #f0f9ff;
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            border: 2px dashed #90cdf4;
        }
        .rating-section, .comment-section {
            margin-bottom: 2rem;
        }
        .rating-title, .comment-title {
            color: var(--primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 1.8rem;
            color: #cbd5e0;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #f6ad55;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #cbd5e0;
            border-radius: 8px;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            margin-bottom: 1rem;
            transition: var(--transition);
        }
        .comment-form textarea:focus {
            border-color: var(--primary);
            outline: none;
        }
        .submit-btn {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background: #9b2c2c;
            transform: translateY(-2px);
        }
        .footer-links {
            background: #2d3748;
            padding: 3rem 2rem;
            margin-top: 3rem;
        }
        .links-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: #4a5568;
            padding: 1.2rem;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: #5a6578;
            transform: translateY(-3px);
        }
        .web-link a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 500;
            display: block;
        }
        .web-link a:hover {
            color: white;
            text-decoration: underline;
        }
        .footer {
            background: var(--dark);
            color: white;
            text-align: center;
            padding: 2rem;
        }
        .copyright {
            font-size: 0.95rem;
            color: #a0aec0;
            margin-top: 1rem;
        }
        .divider {
            height: 1px;
            background: linear-gradient(to right, transparent, #cbd5e0, transparent);
            margin: 2.5rem 0;
        }
        .tag {
            display: inline-block;
            background: #e6f7ff;
            color: var(--primary);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
        @media print {
            .header, .sidebar, .footer-links, .user-interaction, .footer {
                display: none;
            }
            .container {
                grid-template-columns: 1fr;
                max-width: 100%;
            }
            body {
                background: white;
                color: black;
            }
        }
