* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary: #1a365d;
            --secondary: #e53e3e;
            --accent: #f6ad55;
            --light: #f7fafc;
            --dark: #2d3748;
            --gray: #718096;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }
        .header {
            background: linear-gradient(135deg, var(--primary), #2c5282);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            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: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            background-color: var(--primary);
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav .nav-link {
            display: block;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background-color: #edf2f7;
            padding: 1rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb-links {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .breadcrumb-links a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb-links a:hover {
            text-decoration: underline;
        }
        .search-section {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
            text-align: center;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 12px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 4px;
            font-size: 1rem;
        }
        .search-btn {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #c53030;
            transform: scale(1.05);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        .article h1 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 2.2rem;
            line-height: 1.2;
        }
        .article h2 {
            color: var(--primary);
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
        }
        .article h3 {
            color: var(--dark);
            margin: 1.5rem 0 1rem;
        }
        .article p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fffaf0;
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 4px 4px 0;
        }
        .feature-list {
            list-style: none;
            margin: 1.5rem 0;
        }
        .feature-list li {
            padding: 0.5rem 0;
            padding-left: 2rem;
            position: relative;
        }
        .feature-list li:before {
            content: "✓";
            color: var(--secondary);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        .article-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .sidebar {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            height: fit-content;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.5rem;
            color: #e2e8f0;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #f6ad55;
        }
        .rating-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 1rem;
            transition: var(--transition);
        }
        .rating-btn:hover {
            background-color: #2c5282;
        }
        .comments-section {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            margin: 2rem 0;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-input {
            padding: 12px;
            border: 2px solid #e2e8f0;
            border-radius: 4px;
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background-color: #c53030;
        }
        .footer-links {
            background-color: #2d3748;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }
        .web-link a {
            color: #cbd5e0;
            text-decoration: none;
            display: block;
        }
        .web-link a:hover {
            color: white;
        }
        .footer {
            background-color: var(--primary);
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }
        .social-links {
            display: flex;
            gap: 1rem;
        }
        .social-link {
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .social-link:hover {
            color: var(--accent);
            transform: translateY(-3px);
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: 700; }
        .text-accent { color: var(--accent); }
        .text-secondary { color: var(--secondary); }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .p-2 { padding: 2rem; }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            .article {
                padding: 1.5rem;
            }
            .article h1 {
                font-size: 1.8rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input,
            .search-btn {
                width: 100%;
            }
        }
