        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #2E7D32;
            --secondary-color: #FF9800;
            --accent-color: #D32F2F;
            --light-bg: #F5F5F5;
            --dark-text: #212121;
            --light-text: #757575;
            --white: #FFFFFF;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
            --transition: all 0.3s ease;
            --max-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.8;
            color: var(--dark-text);
            background-color: var(--light-bg);
            text-align: justify;
            font-size: 18px;
        }
        h1, h2, h3, h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin-top: 2rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--secondary-color);
            padding-left: 15px;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent-color);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }
        strong {
            color: var(--accent-color);
            font-weight: 700;
        }
        em {
            color: var(--secondary-color);
            font-style: italic;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--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 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        .logo span {
            color: var(--accent-color);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: var(--border-radius);
        }
        .nav-desktop a:hover {
            background-color: var(--primary-color);
            color: var(--white);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: var(--primary-color);
            cursor: pointer;
            background: none;
            border: none;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--white);
            padding: 20px;
            box-shadow: var(--shadow);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px;
            border-bottom: 1px solid #eee;
            font-weight: 600;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background-color: #E8F5E9;
            padding: 12px 0;
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--light-text);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        .search-section {
            background: linear-gradient(135deg, var(--primary-color), #1B5E20);
            padding: 40px 20px;
            border-radius: var(--border-radius);
            margin: 3rem 0;
            color: var(--white);
            text-align: center;
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
            margin-top: 25px;
        }
        .search-input {
            flex: 1;
            padding: 18px 20px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-btn {
            background-color: var(--secondary-color);
            color: var(--white);
            border: none;
            border-radius: 50px;
            padding: 0 35px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #F57C00;
            transform: translateY(-3px);
        }
        main {
            background-color: var(--white);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
        }
        .content-intro {
            font-size: 1.3rem;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px dashed var(--secondary-color);
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: var(--border-radius);
            margin: 2rem auto;
            display: block;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .article-image:hover {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--light-text);
            margin-top: 10px;
            margin-bottom: 3rem;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 2rem;
        }
        li {
            margin-bottom: 0.8rem;
            padding-left: 10px;
        }
        .highlight-box {
            background-color: #FFF3E0;
            border-left: 5px solid var(--secondary-color);
            padding: 25px;
            margin: 3rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .rating-section {
            background-color: #F5F5F5;
            padding: 30px;
            border-radius: var(--border-radius);
            margin: 4rem 0;
            text-align: center;
        }
        .rating-stars {
            font-size: 2.5rem;
            color: #FFC107;
            margin: 20px 0;
            cursor: pointer;
        }
        .rating-stars i {
            margin: 0 5px;
            transition: var(--transition);
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .comment-section {
            margin: 4rem 0;
        }
        .comment-form {
            background-color: #F9F9F9;
            padding: 30px;
            border-radius: var(--border-radius);
            margin-top: 2rem;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-family: inherit;
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background-color: #1B5E20;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 4rem 0;
        }
        .web-link {
            background-color: var(--white);
            padding: 20px;
            border-radius: var(--border-radius);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        .web-link a {
            color: var(--dark-text);
            font-weight: 600;
            display: block;
            padding: 10px;
        }
        footer {
            background-color: #263238;
            color: var(--white);
            padding: 50px 0 20px;
            margin-top: 4rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: var(--secondary-color);
            font-size: 1.5rem;
            margin-bottom: 25px;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 10px;
        }
        .footer-links {
            list-style: none;
            margin-left: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #B0BEC5;
        }
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #37474F;
            color: #B0BEC5;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            body { font-size: 17px; }
            .header-container { padding: 15px 20px; }
            main { padding: 30px; }
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .header-container { padding: 15px; }
            .search-form { flex-direction: column; }
            .search-btn { padding: 18px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            main { padding: 20px; }
            .footer-content { flex-direction: column; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.6rem; }
            .logo { font-size: 1.8rem; }
            .content-intro { font-size: 1.1rem; }
            .rating-stars { font-size: 2rem; }
            .long-tail-links { grid-template-columns: 1fr; }
        }
        @media print {
            header, .search-section, .rating-section, .comment-section, .long-tail-links, footer {
                display: none;
            }
            body {
                font-size: 12pt;
                line-height: 1.5;
                color: #000;
                background: none;
            }
            main {
                box-shadow: none;
                padding: 0;
            }
            .article-image {
                max-width: 100%;
            }
            a { color: #000; text-decoration: underline; }
        }
        .emoji {
            display: inline-block;
            animation: bounce 2s infinite;
        }
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        .indian-flag {
            color: #FF9933;
            text-shadow: 1px 1px 2px #000;
        }
        .hindi-term {
            background-color: #FFF8E1;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: bold;
        }
