        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #1a365d;
            --secondary-color: #e53e3e;
            --accent-color: #38a169;
            --text-color: #2d3748;
            --light-bg: #f7fafc;
            --border-color: #e2e8f0;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-color);
            background-color: #fff;
            font-size: 18px;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 4px solid var(--secondary-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 6px solid var(--accent-color);
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
            word-spacing: 0.1em;
        }
        strong {
            color: var(--primary-color);
            font-weight: 700;
        }
        em {
            color: var(--accent-color);
            font-style: italic;
        }
        header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2d3748 100%);
            color: white;
            padding: 1.5rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .logo i {
            color: var(--secondary-color);
        }
        .desktop-nav {
            display: flex;
            gap: 2.5rem;
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.2rem;
            transition: var(--transition);
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--primary-color);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 1.2rem;
        }
        .breadcrumb {
            max-width: 1400px;
            margin: 1.5rem auto;
            padding: 0 2rem;
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
        }
        main {
            padding: 2rem 0;
        }
        article {
            background-color: white;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        }
        .featured-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        aside {
            padding: 2rem 0;
        }
        .sidebar-widget {
            background-color: var(--light-bg);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
            margin-bottom: 1rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 1rem;
            border: 2px solid var(--border-color);
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #c53030;
        }
        .rating-system {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #e2e8f0;
            cursor: pointer;
            transition: var(--transition);
        }
        .star.active {
            color: #f6e05e;
        }
        .star:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            padding: 1rem;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            margin-bottom: 1rem;
            font-family: inherit;
        }
        .comment-form button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #2f855a;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background-color: var(--light-bg);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary-color);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .web-link a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            display: block;
            font-size: 1.1rem;
        }
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 4rem 0 2rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }
        .footer-section h3 {
            color: white;
            border-left: none;
            padding-left: 0;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .footer-section a {
            color: #cbd5e0;
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: var(--transition);
        }
        .footer-section a:hover {
            color: white;
            padding-left: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #a0aec0;
            font-size: 0.9rem;
        }
        @media (max-width: 1200px) {
            .container {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article {
                padding: 1.5rem;
            }
            .featured-image {
                height: 300px;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                border-radius: 8px;
                margin-bottom: 0.5rem;
            }
            .search-form button {
                border-radius: 8px;
                padding: 1rem;
            }
        }
        @media print {
            .desktop-nav,
            .hamburger,
            .sidebar-widget,
            .web-links,
            footer {
                display: none !important;
            }
            .container {
                grid-template-columns: 1fr;
            }
            article {
                box-shadow: none;
                padding: 0;
            }
        }
        @keyframes highlight {
            0% { background-color: transparent; }
            50% { background-color: rgba(56, 161, 105, 0.1); }
            100% { background-color: transparent; }
        }
        .highlight {
            animation: highlight 3s ease;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
        }
        .stat-box {
            background-color: var(--light-bg);
            border-left: 5px solid var(--secondary-color);
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .quote {
            font-style: italic;
            font-size: 1.3rem;
            color: var(--primary-color);
            padding: 2rem;
            border-left: 4px solid var(--accent-color);
            background-color: rgba(56, 161, 105, 0.05);
            margin: 2.5rem 0;
        }
        .tip {
            background-color: #fff8e1;
            border: 1px solid #ffd54f;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .tip::before {
            content: "💡";
            margin-right: 0.5rem;
            font-size: 1.5rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        th {
            background-color: var(--primary-color);
            color: white;
            padding: 1.2rem;
            text-align: left;
        }
        td {
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
        }
        tr:hover {
            background-color: rgba(56, 161, 105, 0.05);
        }
