        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            font-size: 18px;
        }
        a {
            text-decoration: none;
            color: #2a6e3f;
            transition: color 0.3s;
        }
        a:hover {
            color: #1e4d2b;
            text-decoration: underline;
        }
        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, #2a6e3f 0%, #1e4d2b 100%);
            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;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: #ffd166;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 2rem;
        }
        nav ul li a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ffd166;
            transition: width 0.3s;
        }
        nav ul li a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e9f5eb;
            padding: 1rem 0;
            font-size: 0.95rem;
            border-bottom: 1px solid #d0e6d6;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb span {
            color: #777;
        }
        main {
            padding: 2rem 0;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-top: 1rem;
        }
        article {
            padding: 0 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #1e4d2b;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid #2a6e3f;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #2a6e3f;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #c1e1cb;
        }
        h3 {
            font-size: 1.6rem;
            color: #3a8a52;
            margin: 1.8rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: #f0f9f3;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid #2a6e3f;
            margin: 2rem 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        b, strong {
            color: #1e4d2b;
        }
        .feature-img {
            width: 80%;
            margin: 2rem auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .search-box {
            background: #f1f8f4;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
        }
        .search-box form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #2a6e3f;
            border-radius: 8px 0 0 8px;
            font-size: 1.1rem;
        }
        .search-box button {
            background-color: #2a6e3f;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background-color: #1e4d2b;
        }
        .rating-comment {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0;
        }
        .rating, .comment {
            background: #f9fdfa;
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid #d0e6d6;
        }
        .stars {
            font-size: 2rem;
            color: #ffd166;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars span {
            margin-right: 5px;
            transition: transform 0.2s;
        }
        .stars span:hover {
            transform: scale(1.2);
        }
        .comment textarea {
            width: 100%;
            height: 150px;
            padding: 1rem;
            border: 2px solid #c1e1cb;
            border-radius: 8px;
            font-size: 1rem;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            background-color: #2a6e3f;
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.1rem;
        }
        .btn:hover {
            background-color: #1e4d2b;
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem;
            background-color: #e9f5eb;
            border-radius: 10px;
        }
        .web-link {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
        }
        footer {
            background-color: #1a3a24;
            color: #d0e6d6;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .copyright {
            width: 100%;
            text-align: center;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #2a5c3a;
            font-size: 0.9rem;
            color: #a0c0aa;
        }
        @media (max-width: 992px) {
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
            .rating-comment {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #1e4d2b;
                padding: 1rem 0;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 0;
                text-align: center;
                padding: 0.8rem 0;
                border-bottom: 1px solid #2a6e3f;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 0 1rem;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
            .feature-img {
                width: 100%;
            }
        }
        @media (max-width: 576px) {
            .web-links {
                grid-template-columns: 1fr;
            }
            .search-box form {
                flex-direction: column;
            }
            .search-box input, .search-box button {
                width: 100%;
                border-radius: 8px;
                margin-bottom: 10px;
            }
        }
