        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary-color: #1a365d;
            --secondary-color: #e53e3e;
            --accent-color: #f6ad55;
            --light-color: #f7fafc;
            --dark-color: #2d3748;
            --text-color: #2d3748;
            --gray-light: #e2e8f0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
            --max-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul, ol {
            list-style-position: inside;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background-color: var(--primary-color);
            color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            transition: var(--transition);
        }
        .logo a:hover {
            color: var(--accent-color);
        }
        .logo-icon {
            color: var(--secondary-color);
        }
        .desktop-nav ul {
            display: flex;
            gap: 25px;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 5px;
            position: relative;
            transition: var(--transition);
        }
        .desktop-nav a:hover {
            color: var(--accent-color);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent-color);
            transition: var(--transition);
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: var(--dark-color);
            padding: 20px;
            flex-direction: column;
            gap: 15px;
            animation: slideDown 0.3s ease;
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            font-weight: 600;
            padding: 10px 15px;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background-color: var(--gray-light);
            padding: 12px 20px;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .breadcrumb li {
            display: inline;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 8px;
            color: var(--dark-color);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
            color: var(--secondary-color);
        }
        main {
            background-color: white;
            box-shadow: var(--shadow);
            border-radius: var(--border-radius);
            margin: 30px auto;
            padding: 40px;
            overflow: hidden;
        }
        @media (max-width: 768px) {
            main {
                padding: 25px 20px;
                margin: 20px auto;
            }
        }
        article {
            max-width: 100%;
        }
        h1, h2, h3, h4 {
            color: var(--primary-color);
            margin-top: 1.8em;
            margin-bottom: 0.8em;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            border-bottom: 4px solid var(--accent-color);
            padding-bottom: 20px;
            margin-top: 0;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--secondary-color);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--dark-color);
        }
        h4 {
            font-size: 1.4rem;
            color: #4a5568;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            h4 { font-size: 1.2rem; }
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--primary-color);
            background-color: #f0f4f8;
            padding: 20px;
            border-radius: var(--border-radius);
            margin-bottom: 2em;
            border-left: 5px solid var(--accent-color);
        }
        .highlight {
            background-color: #fff8e1;
            padding: 3px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .tip-box {
            background-color: #e8f4fd;
            border-left: 5px solid #3182ce;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .tip-box h4 {
            color: #2c5282;
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .warning-box {
            background-color: #fed7d7;
            border-left: 5px solid #e53e3e;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        ul, ol {
            margin-bottom: 1.5em;
            padding-left: 25px;
        }
        li {
            margin-bottom: 0.7em;
        }
        .featured-image {
            width: 100%;
            max-width: 800px;
            margin: 40px auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            transition: var(--transition);
        }
        .featured-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 15px;
            background-color: var(--light-color);
            color: #4a5568;
        }
        .interactive-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            border-radius: var(--border-radius);
            padding: 30px;
            margin: 40px 0;
        }
        .section-title {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--primary-color);
            margin-bottom: 25px;
        }
        .search-box {
            background-color: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid var(--gray-light);
            border-right: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-input:focus {
            outline: none;
            border-color: var(--accent-color);
        }
        .search-btn {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            padding: 0 25px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-btn:hover {
            background-color: #c53030;
        }
        .rating-widget, .comment-widget {
            background-color: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: var(--gray-light);
            cursor: pointer;
            transition: var(--transition);
        }
        .star.active, .star:hover {
            color: #f6e05e;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-color);
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--gray-light);
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--accent-color);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .submit-btn:hover {
            background-color: #2d4a7c;
        }
        .long-tail-links {
            background-color: var(--light-color);
            padding: 40px 20px;
            margin-top: 50px;
        }
        .links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .web-link {
            background-color: white;
            padding: 20px;
            border-radius: var(--border-radius);
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: var(--primary-color);
            font-weight: 600;
            display: block;
            padding: 10px;
            border-radius: 6px;
            transition: var(--transition);
        }
        .web-link a:hover {
            background-color: #edf2f7;
            text-decoration: underline;
        }
        .site-footer {
            background-color: var(--dark-color);
            color: white;
            padding: 50px 20px 30px;
        }
        .footer-container {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .footer-section h3 {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 25px;
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 10px;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            transition: var(--transition);
            display: inline-block;
        }
        .footer-links a:hover {
            color: var(--accent-color);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 40px;
            border-top: 1px solid #4a5568;
            font-size: 0.9rem;
            color: #cbd5e0;
        }
        @media (max-width: 992px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                padding: 15px;
            }
        }
        @media (max-width: 576px) {
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: var(--border-radius);
                border-right: 2px solid var(--gray-light);
                margin-bottom: 10px;
            }
            .search-btn {
                border-radius: var(--border-radius);
                justify-content: center;
                padding: 15px;
            }
            .rating-stars {
                justify-content: center;
            }
            .links-container {
                grid-template-columns: 1fr;
            }
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .pulse:hover {
            animation: pulse 0.5s ease;
        }
