        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #4a7c59;
            --secondary-color: #8fb996;
            --accent-color: #d8b4a0;
            --dark-color: #2d3e40;
            --light-color: #f5f1e6;
            --text-color: #333;
            --text-light: #666;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
            --container-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: var(--light-color);
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        h1 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        h1:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }
        h2 {
            font-size: 2rem;
            margin-top: 2.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-color);
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
            color: var(--primary-color);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-color);
        }
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center {
            text-align: center;
        }
        .text-highlight {
            color: var(--primary-color);
            font-weight: 700;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 0.2rem;
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 20px;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent-color);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: var(--transition);
        }
        .nav-desktop a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
        }
        .nav-mobile {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background-color: white;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            transition: var(--transition);
            z-index: 1001;
            overflow-y: auto;
        }
        .nav-mobile.active {
            right: 0;
        }
        .nav-mobile-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }
        .nav-mobile-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-color);
            cursor: pointer;
        }
        .nav-mobile-links {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .nav-mobile-links a {
            font-weight: 600;
            padding: 0.7rem 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }
        .overlay.active {
            display: block;
        }
        .breadcrumb {
            background-color: #f9f9f9;
            padding: 1rem 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            margin-bottom: 2rem;
        }
        .breadcrumb-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.5rem;
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        .breadcrumb-separator {
            color: var(--text-light);
        }
        .hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 3rem 0;
            margin-bottom: 3rem;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
        }
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .hero h1 {
            color: white;
            margin-bottom: 1rem;
        }
        .hero h1:after {
            background-color: var(--accent-color);
            left: 50%;
            transform: translateX(-50%);
        }
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
        }
        main {
            padding: 2rem 0;
        }
        .article-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
        }
        .feature-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .interactive-section {
            background-color: #f9f9f9;
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 3rem 0;
            border-left: 5px solid var(--accent-color);
        }
        .interactive-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-input, .form-textarea, .form-select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus, .form-select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            color: #ffc107;
        }
        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 0.8rem 1.8rem;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover {
            background-color: var(--dark-color);
            transform: translateY(-2px);
        }
        .btn i {
            margin-right: 0.5rem;
        }
        .info-box {
            background-color: #e8f4ea;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin: 2rem 0;
            border-left: 5px solid var(--primary-color);
        }
        .info-box h4 {
            color: var(--primary-color);
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        .comparison-table th, .comparison-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        .comparison-table th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
        }
        .comparison-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .comparison-table tr:hover {
            background-color: #f0f7f2;
        }
        .footer-links {
            background-color: var(--dark-color);
            padding: 2.5rem 0;
            margin-top: 3rem;
        }
        .footer-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            color: white;
            display: block;
            font-weight: 500;
        }
        .web-link a:hover {
            color: var(--accent-color);
        }
        footer {
            background-color: #222;
            color: #bbb;
            padding: 2.5rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.9rem;
            line-height: 1.5;
        }
        .copyright a {
            color: var(--accent-color);
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
        }
        .social-links a {
            color: #bbb;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .social-links a:hover {
            color: var(--accent-color);
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.4rem; }
            .article-content { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            .header-container { padding: 1rem; }
            .hero { padding: 2rem 0; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            .article-content { padding: 1.5rem; }
            .interactive-section { padding: 1.5rem; }
            .footer-links-container { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
        }
        @media (max-width: 576px) {
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.4rem; }
            .hero p { font-size: 1rem; }
            .btn { width: 100%; text-align: center; }
            .footer-links-container { grid-template-columns: 1fr; }
        }
        @media print {
            .nav-desktop, .hamburger, .breadcrumb, .interactive-section, .footer-links, .social-links {
                display: none;
            }
            .article-content {
                box-shadow: none;
                padding: 0;
            }
            body {
                background-color: white;
                color: black;
            }
            a { color: black; }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        :focus-visible {
            outline: 3px solid var(--accent-color);
            outline-offset: 3px;
        }
