        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            font-size: 18px;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul {
            list-style: none;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: #1a365d;
        }
        h1 {
            font-size: 2.8rem;
            margin-top: 1.5rem;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 2.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e2e8f0;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2rem;
            color: #2d3748;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #4a5568;
        }
        .highlight {
            background-color: #fffacd;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .site-header {
            background-color: #ffffff;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo a {
            font-family: 'Poppins', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: #4f46e5;
            letter-spacing: -0.5px;
        }
        .logo a span {
            color: #f97316;
        }
        .desktop-nav ul {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a:hover {
            color: #4f46e5;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #4f46e5;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4a5568;
        }
        .mobile-nav {
            display: none;
            background-color: #fff;
            padding: 1rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav a {
            display: block;
            padding: 0.8rem;
            border-radius: 6px;
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background-color: #f1f5f9;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #f1f5f9;
            font-size: 0.95rem;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #718096;
        }
        .breadcrumb a:hover {
            color: #4f46e5;
            text-decoration: underline;
        }
        .search-section {
            background-color: #e2e8f0;
            padding: 2rem 0;
            margin: 1.5rem 0;
            border-radius: 10px;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 0;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 8px 0 0 8px;
            font-size: 1.1rem;
            font-family: inherit;
        }
        .search-button {
            background-color: #4f46e5;
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            padding: 0 2rem;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background-color 0.3s;
        }
        .search-button:hover {
            background-color: #4338ca;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2.5rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: #fff;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .rating-widget, .comment-widget {
            background-color: #fff;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        .rating-title, .comment-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #1a365d;
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .star {
            font-size: 2rem;
            color: #e2e8f0;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #fbbf24;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: #4a5568;
        }
        .form-input, .form-textarea {
            padding: 0.8rem 1rem;
            border: 1px solid #cbd5e0;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-submit {
            background-color: #10b981;
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .form-submit:hover {
            background-color: #059669;
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            margin: 0 auto;
            border: 5px solid #fff;
        }
        .image-caption {
            margin-top: 0.8rem;
            font-style: italic;
            color: #718096;
            font-size: 0.95rem;
        }
        .content-block {
            margin-bottom: 2.5rem;
        }
        .tip-box {
            background-color: #dbeafe;
            border-left: 5px solid #3b82f6;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .tip-title {
            font-weight: 700;
            color: #1e40af;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }
        .quote {
            background-color: #f0f9ff;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            border-left: 5px solid #0ea5e9;
            font-style: italic;
        }
        .quote-author {
            text-align: right;
            font-weight: 600;
            color: #475569;
            margin-top: 1rem;
        }
        .long-tail-links {
            background-color: #f8fafc;
            padding: 2.5rem;
            margin: 3rem 0;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
        }
        .links-title {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.2rem;
        }
        .web-link {
            background-color: #fff;
            padding: 1.2rem;
            border-radius: 8px;
            border: 1px solid #cbd5e0;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            border-color: #4f46e5;
            box-shadow: 0 4px 8px rgba(79, 70, 229, 0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            font-weight: 600;
            color: #2d3748;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .web-link a::before {
            content: '🔗';
            font-size: 1.2rem;
        }
        .web-link a:hover {
            color: #4f46e5;
        }
        .site-footer {
            background-color: #1a202c;
            color: #cbd5e0;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-logo a {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
        }
        .footer-logo span {
            color: #fbbf24;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2d3748;
            font-size: 0.95rem;
            color: #a0aec0;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            body { font-size: 16px; }
            .desktop-nav { display: none; }
            .mobile-toggle { display: block; }
            .header-top { padding: 1rem 0; }
            .article-content { padding: 1.5rem; }
            .main-content { gap: 2rem; }
            .search-form { flex-direction: column; }
            .search-input { border-radius: 8px; margin-bottom: 0.5rem; }
            .search-button { border-radius: 8px; padding: 1rem; }
            .web-links { grid-template-columns: 1fr; }
        }
