* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', Arial, sans-serif;
        }
        :root {
            --primary: #2E7D32;
            --secondary: #FF9800;
            --dark: #1B5E20;
            --light: #E8F5E9;
            --text: #333333;
            --gray: #757575;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f9f9f9;
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: var(--primary);
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: var(--secondary);
        }
        .search-form {
            display: flex;
            flex: 0 1 400px;
        }
        .search-input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 2px solid var(--primary);
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
        }
        .search-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: var(--dark);
        }
        .nav-toggle {
            display: none;
            font-size: 1.8rem;
            color: var(--primary);
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            background-color: var(--dark);
            border-radius: 8px;
            overflow: hidden;
        }
        nav ul li {
            flex: 1;
        }
        nav ul li a {
            display: block;
            padding: 18px 20px;
            color: white;
            text-align: center;
            font-weight: 600;
            border-right: 1px solid rgba(255,255,255,0.1);
        }
        nav ul li:last-child a {
            border-right: none;
        }
        nav ul li a:hover {
            background-color: var(--primary);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        main {
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
        }
        .article-content {
            background-color: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--dark);
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        h2 {
            color: var(--primary);
            font-size: 1.8rem;
            margin: 35px 0 15px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--light);
        }
        h3 {
            color: var(--secondary);
            font-size: 1.4rem;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.05rem;
        }
        .highlight {
            background-color: var(--light);
            border-left: 5px solid var(--secondary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 25px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 20px;
        }
        li {
            margin-bottom: 8px;
        }
        .tip {
            display: flex;
            align-items: flex-start;
            background-color: #FFF3E0;
            padding: 18px;
            border-radius: 10px;
            margin: 20px 0;
        }
        .tip i {
            color: #FF9800;
            font-size: 1.5rem;
            margin-right: 15px;
            flex-shrink: 0;
        }
        .rating-section, .comment-section {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin-top: 30px;
        }
        .rating-section h2, .comment-section h2 {
            border: none;
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            margin: 20px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
            margin: 0 5px;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #FFD700;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            max-width: 600px;
            margin: 0 auto;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
        }
        .btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .btn:hover {
            background-color: var(--dark);
        }
        .comment-list {
            margin-top: 30px;
        }
        .comment-item {
            border-bottom: 1px solid #eee;
            padding: 20px 0;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        .comment-author {
            font-weight: 700;
            color: var(--dark);
        }
        .comment-date {
            color: var(--gray);
            font-size: 0.9rem;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .sidebar-box {
            background-color: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .sidebar-box h3 {
            margin-top: 0;
            color: var(--dark);
            border-bottom: 2px solid var(--light);
            padding-bottom: 10px;
        }
        .related-links ul {
            list-style: none;
            margin-left: 0;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #eee;
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        .related-links a {
            display: block;
            padding: 8px 0;
            color: var(--text);
        }
        .related-links a:hover {
            color: var(--primary);
            padding-left: 10px;
        }
        .stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 15px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: var(--light);
            border-radius: 8px;
        }
        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
        }
        .stat-label {
            font-size: 0.9rem;
            color: var(--gray);
        }
        .web-links {
            background-color: var(--dark);
            padding: 40px 0;
            margin-top: 40px;
        }
        .web-links .container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        .web-link {
            background-color: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            color: white;
            font-weight: 600;
            display: block;
            text-align: center;
        }
        footer {
            background-color: #222;
            color: #ccc;
            padding: 40px 0 20px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #aaa;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #888;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .web-links .container {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                flex: 1 1 100%;
                margin-top: 15px;
            }
            .nav-toggle {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                margin-top: 15px;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li a {
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            h1 {
                font-size: 2rem;
            }
            .article-content {
                padding: 25px;
            }
            .web-links .container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .web-links .container {
                grid-template-columns: 1fr;
            }
            .footer-content {
                flex-direction: column;
            }
            .stats {
                grid-template-columns: 1fr;
            }
        }
