* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Arial', sans-serif;
        }
        :root {
            --primary-color: #1a237e;
            --secondary-color: #c62828;
            --accent-color: #ffab00;
            --light-color: #f5f5f5;
            --dark-color: #121212;
            --text-color: #333;
            --text-light: #666;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #fff;
            color: var(--text-color);
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 12px 24px;
            border-radius: 6px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        header {
            background-color: var(--primary-color);
            color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--accent-color);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a:hover {
            color: var(--accent-color);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: var(--transition);
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
        }
        .mobile-nav {
            display: none;
            background: var(--dark-color);
            padding: 20px;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            color: white;
            font-size: 1.1rem;
            display: block;
            padding: 10px;
            border-radius: 4px;
        }
        .mobile-nav a:hover {
            background: var(--primary-color);
        }
        .breadcrumb {
            background-color: #f0f0f0;
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 10px;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        .search-section {
            background: linear-gradient(135deg, var(--primary-color), #283593);
            color: white;
            padding: 40px 0;
            text-align: center;
            margin-bottom: 40px;
            border-radius: 0 0 20px 20px;
        }
        .search-section h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 16px 20px;
            border: none;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--accent-color);
            color: var(--dark-color);
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #ffd54f;
        }
        main {
            flex: 1;
            padding-bottom: 50px;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
            border-bottom: 2px solid #eee;
            padding-bottom: 30px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .article-meta {
            color: var(--text-light);
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .article-meta span i {
            margin-right: 5px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            font-size: 1.1rem;
        }
        .article-content h2 {
            color: var(--primary-color);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
            font-size: 1.8rem;
        }
        .article-content h3 {
            color: var(--secondary-color);
            margin: 30px 0 15px;
            font-size: 1.5rem;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .article-content strong {
            color: var(--primary-color);
            font-weight: 700;
        }
        .article-content em {
            color: var(--secondary-color);
            font-style: italic;
        }
        .highlight-box {
            background: #e3f2fd;
            border-left: 5px solid var(--primary-color);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            max-width: 800px;
            margin: 0 auto;
        }
        .image-container img:hover {
            transform: scale(1.01);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .image-caption {
            font-style: italic;
            color: var(--text-light);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            background: #f9f9f9;
            padding: 25px;
            border-radius: 12px;
            height: fit-content;
            box-shadow: var(--shadow);
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ddd;
            font-size: 1.4rem;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
            margin-bottom: 10px;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent-color);
        }
        .comment-widget textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            resize: vertical;
            min-height: 150px;
            margin-bottom: 15px;
            font-size: 1rem;
        }
        .comment-widget button {
            width: 100%;
        }
        .footer-links {
            background: #2c3e50;
            color: white;
            padding: 50px 0 30px;
            margin-top: 50px;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ddd;
            font-size: 1rem;
            line-height: 1.5;
        }
        .web-link a:hover {
            color: var(--accent-color);
        }
        footer {
            background: var(--dark-color);
            color: #aaa;
            text-align: center;
            padding: 30px 0;
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .search-section h2 {
                font-size: 1.8rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input,
            .search-form button {
                width: 100%;
                border-radius: 8px;
                margin-bottom: 10px;
            }
            .content-wrapper {
                gap: 30px;
            }
        }
