        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #1a73e8;
            transition: color 0.3s;
        }
        a:hover {
            color: #0d47a1;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #2e7d32, #1b5e20);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2.5rem;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e8f5e9;
            padding: 0.8rem 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #c8e6c9;
        }
        .breadcrumb a {
            color: #2e7d32;
        }
        main {
            padding: 2rem 0;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin: 2rem auto;
        }
        article {
            padding: 0 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #1b5e20;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-left: 6px solid #4caf50;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #2e7d32;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #a5d6a7;
        }
        h3 {
            font-size: 1.5rem;
            color: #388e3c;
            margin: 1.8rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #f1f8e9;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid #4caf50;
            margin: 1.5rem 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .feature-img {
            width: 80%;
            margin: 2rem auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.5s;
        }
        .feature-img:hover {
            transform: scale(1.02);
        }
        .search-box {
            background: #e3f2fd;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
        }
        .search-box input {
            width: 70%;
            padding: 0.8rem 1rem;
            border: 2px solid #2196f3;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
        }
        .search-box button {
            padding: 0.8rem 1.5rem;
            background: #2196f3;
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #0d47a1;
        }
        .rating-comment {
            background: #fff8e1;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
        }
        .rating {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffb300;
            cursor: pointer;
        }
        .stars span:hover {
            color: #ff8f00;
        }
        textarea, input[type="text"] {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            margin-bottom: 1rem;
            font-size: 1rem;
        }
        button[type="submit"] {
            background: #ff9800;
            color: white;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        button[type="submit"]:hover {
            background: #ef6c00;
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            background: #f5f5f5;
            padding: 2rem;
            margin-top: 3rem;
            border-radius: 10px;
        }
        .web-link {
            background: white;
            padding: 1rem;
            border-radius: 6px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        footer {
            background: #263238;
            color: #eceff1;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #546e7a;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: #b0bec5;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1b5e20;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-radius: 0 0 8px 8px;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .search-box input {
                width: 60%;
            }
            .feature-img {
                width: 100%;
            }
        }
