* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        body {
            background-color: #f5fdf7;
            color: #333;
            line-height: 1.7;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #2e7d32, #4caf50);
            color: white;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 100, 0, 0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 900;
            color: #fff;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
            transition: color 0.3s;
        }
        .logo a:hover {
            color: #ffeb3b;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            padding: 12px 18px;
            border: none;
            border-radius: 30px;
            width: 250px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background-color: #ff9800;
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 1.2rem;
        }
        .search-form button:hover {
            background-color: #f57c00;
        }
        nav {
            background-color: #388e3c;
            margin-top: 20px;
            border-radius: 10px;
            position: relative;
        }
        .nav-links {
            display: flex;
            list-style: none;
            justify-content: space-around;
            padding: 15px;
        }
        .nav-links li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            padding: 10px 20px;
            border-radius: 25px;
            transition: all 0.3s;
            font-weight: 600;
        }
        .nav-links li a:hover {
            background-color: #ffeb3b;
            color: #2e7d32;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 10px;
        }
        .breadcrumb {
            padding: 15px 0;
            color: #666;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #388e3c;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        .article-content {
            background-color: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 6px 20px rgba(0, 100, 0, 0.08);
        }
        h1 {
            font-size: 2.8rem;
            color: #2e7d32;
            margin-bottom: 25px;
            line-height: 1.3;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #4caf50;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffeb3b;
        }
        h3 {
            font-size: 1.5rem;
            color: #388e3c;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #e8f5e9;
            padding: 25px;
            border-left: 5px solid #4caf50;
            border-radius: 10px;
            margin: 25px 0;
        }
        .highlight strong {
            color: #d84315;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            margin: 25px auto;
            display: block;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s;
        }
        img:hover {
            transform: scale(1.02);
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 5px;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        .comment-form, .rating-form {
            background-color: #f1f8e9;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        .comment-form h3, .rating-form h3 {
            color: #ff9800;
        }
        form label {
            display: block;
            margin: 15px 0 8px;
            font-weight: 600;
            color: #555;
        }
        form input, form textarea, form select {
            width: 100%;
            padding: 14px;
            border: 2px solid #c8e6c9;
            border-radius: 10px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        form input:focus, form textarea:focus, form select:focus {
            border-color: #4caf50;
            outline: none;
        }
        form button {
            background-color: #4caf50;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 1.1rem;
            margin-top: 20px;
            transition: background 0.3s;
            width: 100%;
        }
        form button:hover {
            background-color: #388e3c;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .stars i {
            color: #ffd600;
            font-size: 2rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover {
            color: #ffab00;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 50px 0 30px;
        }
        .web-link {
            background-color: #e8f5e9;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }
        .web-link a {
            color: #2e7d32;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: color 0.3s;
        }
        .web-link a:hover {
            color: #ff9800;
            text-decoration: underline;
        }
        footer {
            background-color: #2e7d32;
            color: white;
            padding: 40px 0;
            text-align: center;
            border-top: 5px solid #ffeb3b;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: #c8e6c9;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #ffeb3b;
        }
        .copyright {
            font-size: 0.9rem;
            color: #a5d6a7;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 20px;
            }
            .search-form input {
                width: 100%;
            }
            .nav-links {
                flex-direction: column;
                display: none;
                padding: 0;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                text-align: center;
                margin: 10px 0;
            }
            .hamburger {
                display: block;
                position: absolute;
                right: 20px;
                top: -50px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 25px;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .web-links {
                grid-template-columns: 1fr;
            }
            .logo a {
                font-size: 2rem;
            }
        }
