:root {
            --primary: #4CAF50;
            --secondary: #2E7D32;
            --accent: #FF9800;
            --dark: #1B5E20;
            --light: #E8F5E9;
            --text: #333333;
            --text-light: #666666;
            --white: #FFFFFF;
            --gray: #F5F5F5;
            --shadow: rgba(0, 0, 0, 0.1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
            line-height: 1.8;
            color: var(--text);
            background: linear-gradient(135deg, var(--light) 0%, #d4edda 100%);
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(90deg, var(--dark) 0%, var(--secondary) 100%);
            color: var(--white);
            padding: 1rem 0;
            box-shadow: 0 4px 12px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--white);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: transform 0.3s;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        .logo i {
            color: var(--accent);
        }
        .logo span {
            background: linear-gradient(45deg, #FFEB3B, var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        nav {
            display: flex;
            gap: 2rem;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-links a:hover, .nav-links a.active {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            padding: 10px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--white);
            border-radius: 2px;
            transition: 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-light);
            background: var(--gray);
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-container {
            background: var(--white);
            padding: 3rem 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px var(--shadow);
            margin: 2rem auto;
            max-width: 800px;
        }
        .search-box {
            display: flex;
            gap: 10px;
        }
        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid var(--primary);
            border-radius: 50px;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        .search-box input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3);
        }
        .search-box button {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-box button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(76, 175, 80, 0.4);
        }
        main {
            background: var(--white);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 40px var(--shadow);
            margin: 2rem auto;
            padding: 3rem;
        }
        article {
            max-width: 900px;
            margin: 0 auto;
        }
        h1 {
            color: var(--dark);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-left: 8px solid var(--accent);
            padding-left: 1.5rem;
        }
        h2 {
            color: var(--secondary);
            font-size: 2.2rem;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--light);
        }
        h3 {
            color: var(--dark);
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
        }
        h4 {
            color: var(--text);
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
        }
        .article-meta {
            display: flex;
            gap: 2rem;
            color: var(--text-light);
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
            flex-wrap: wrap;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .featured-image {
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            margin: 2.5rem 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            transition: transform 0.5s;
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            padding: 1rem;
            background: var(--gray);
            font-size: 0.95rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255, 152, 0, 0.15) 0%, rgba(255, 152, 0, 0.05) 100%);
            padding: 2.5rem;
            border-radius: 20px;
            border-left: 6px solid var(--accent);
            margin: 2.5rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .highlight p {
            margin-bottom: 0;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark);
        }
        ul, ol {
            margin: 1.5rem 0;
            padding-left: 2.5rem;
        }
        li {
            margin-bottom: 1rem;
            font-size: 1.15rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .stat-card {
            background: var(--light);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s;
            border: 2px solid transparent;
        }
        .stat-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--secondary);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        .stat-label {
            font-size: 1.2rem;
            color: var(--text);
            font-weight: 600;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 3rem 0;
            box-shadow: 0 5px 15px var(--shadow);
            border-radius: 15px;
            overflow: hidden;
        }
        .comparison-table th {
            background: var(--secondary);
            color: white;
            padding: 1.5rem;
            text-align: left;
            font-size: 1.2rem;
        }
        .comparison-table td {
            padding: 1.5rem;
            border-bottom: 1px solid #eee;
            font-size: 1.1rem;
        }
        .comparison-table tr:nth-child(even) {
            background: var(--gray);
        }
        .comparison-table tr:hover {
            background: var(--light);
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .tip-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 20px var(--shadow);
            border-top: 5px solid var(--accent);
            transition: all 0.3s;
        }
        .tip-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .tip-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }
        .rating-section {
            background: var(--light);
            padding: 3rem;
            border-radius: 20px;
            margin: 4rem 0;
            text-align: center;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 2rem 0;
            font-size: 3rem;
            cursor: pointer;
        }
        .rating-stars i {
            color: #ddd;
            transition: all 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #FFD700;
            transform: scale(1.2);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .rating-form {
            max-width: 600px;
            margin: 2rem auto 0;
        }
        .rating-form input,
        .rating-form textarea {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1.5rem;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1.1rem;
            transition: border 0.3s;
        }
        .rating-form input:focus,
        .rating-form textarea:focus {
            outline: none;
            border-color: var(--primary);
        }
        .rating-form textarea {
            height: 150px;
            resize: vertical;
        }
        .rating-form button {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .rating-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(76, 175, 80, 0.4);
        }
        .comments-section {
            margin: 5rem 0;
        }
        .comment-form {
            background: var(--gray);
            padding: 2.5rem;
            border-radius: 20px;
            margin-bottom: 3rem;
        }
        .comment-form h3 {
            margin-top: 0;
        }
        .comment {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px var(--shadow);
            border-left: 4px solid var(--primary);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .comment-author {
            font-weight: 700;
            color: var(--dark);
            font-size: 1.3rem;
        }
        .comment-date {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .comment-rating {
            color: #FFD700;
            font-size: 1.1rem;
        }
        .longtail-links {
            background: var(--dark);
            padding: 3rem;
            margin: 4rem 0;
            border-radius: 20px;
        }
        .longtail-links h3 {
            color: white;
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.2rem;
            border-radius: 12px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(10px);
        }
        .web-link a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            display: block;
        }
        .web-link a:hover {
            color: var(--accent);
        }
        footer {
            background: linear-gradient(90deg, var(--dark) 0%, #1a1a1a 100%);
            color: white;
            padding: 4rem 0 2rem;
            margin-top: 5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-section h4 {
            color: white;
            margin-bottom: 1.8rem;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 0.8rem;
        }
        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 1.2rem;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s;
        }
        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }
        .copyright {
            text-align: center;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 1rem;
        }
        @media (max-width: 992px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
            main {
                padding: 2rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .hamburger {
                display: flex;
            }
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0;
                margin-top: 1rem;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                width: 100%;
                text-align: center;
            }
            .nav-links a {
                justify-content: center;
                padding: 1rem;
                border-radius: 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .tips-grid {
                grid-template-columns: 1fr;
            }
            .rating-stars {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 576px) {
            .search-box {
                flex-direction: column;
            }
            .search-box input,
            .search-box button {
                width: 100%;
            }
            .article-meta {
                flex-direction: column;
                gap: 1rem;
            }
            .rating-section,
            .comment-form,
            .longtail-links {
                padding: 2rem 1.5rem;
            }
        }
        @media print {
            header, footer, .search-container, .rating-section, .comments-section, .longtail-links {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
            main {
                box-shadow: none;
                padding: 0;
            }
            .container {
                max-width: 100%;
            }
        }
