        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #e63946;
            --secondary: #1d3557;
            --accent: #f4a261;
            --light: #f1faee;
            --dark: #1a1a2e;
            --gray: #6c757d;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }
        h1, h2, h3, h4 {
            color: var(--secondary);
            margin-bottom: 1rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            border-left: 6px solid var(--primary);
            padding-left: 1rem;
            margin: 2rem 0;
        }
        h2 {
            font-size: 2.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--accent);
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: var(--dark);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--primary);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-desktop a:hover {
            background: var(--primary);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            background: var(--secondary);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            flex-direction: column;
            gap: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background: var(--light);
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .search-box {
            background: var(--light);
            padding: 2rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 500px;
            margin: 1rem auto 0;
        }
        .search-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid var(--secondary);
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-btn {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: var(--primary);
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .feature-card {
            background: linear-gradient(145deg, #ffffff, #f0f0f0);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .feature-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .article-image {
            width: 100%;
            margin: 2rem 0;
            text-align: center;
        }
        .article-image img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .article-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .highlight {
            background: linear-gradient(90deg, #ffecd2 0%, #fcb69f 100%);
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            border-left: 6px solid var(--primary);
        }
        .highlight h3 {
            color: var(--dark);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffc107;
            margin: 1rem 0;
        }
        .rating-btn {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
            width: 100%;
        }
        .rating-btn:hover {
            background: var(--primary);
            transform: scale(1.05);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            margin-bottom: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 120px;
        }
        .comment-submit {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-submit:hover {
            background: var(--primary);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background: var(--light);
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary);
        }
        .web-link a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        .site-footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: white;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .bold {
            font-weight: 900;
            color: var(--secondary);
        }
        .note {
            background: #e3f2fd;
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid #2196f3;
            margin: 1.5rem 0;
        }
        .warning {
            background: #ffebee;
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid #f44336;
            margin: 1.5rem 0;
        }
        .step-list {
            counter-reset: step;
            margin: 2rem 0;
        }
        .step-list li {
            list-style: none;
            margin-bottom: 1.5rem;
            padding-left: 3rem;
            position: relative;
        }
        .step-list li:before {
            counter-increment: step;
            content: counter(step);
            position: absolute;
            left: 0;
            top: 0;
            background: var(--primary);
            color: white;
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .article-content {
                padding: 1.5rem;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
        }
