:root {
            --primary-green: #3a7d34;
            --secondary-green: #5ba34c;
            --accent-gold: #e8b923;
            --dark-brown: #5d4037;
            --light-brown: #8d6e63;
            --soil-brown: #a1887f;
            --sky-blue: #87ceeb;
            --text-dark: #2c3e50;
            --text-light: #f5f5f5;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Arial', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: #f9f7f0;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%233a7d34' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-brown) 100%);
            color: var(--text-light);
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-family: 'Georgia', serif;
            font-size: 2.2rem;
            font-weight: bold;
            text-decoration: none;
            color: var(--accent-gold);
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        .logo:hover {
            color: var(--text-light);
            transform: scale(1.03);
        }
        .logo i {
            font-size: 2.5rem;
        }
        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .logo-text span:first-child {
            font-size: 1.8rem;
        }
        .logo-text span:last-child {
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: normal;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.8rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--accent-gold);
        }
        .nav-links a.active {
            background-color: var(--secondary-green);
            color: var(--text-light);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #f0efe9;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .breadcrumb a {
            color: var(--primary-green);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
            color: var(--secondary-green);
        }
        .breadcrumb .separator {
            color: var(--light-brown);
        }
        main {
            padding: 2rem 0;
            min-height: 80vh;
        }
        article {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 2.5rem;
            margin-bottom: 2rem;
            overflow: hidden;
        }
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 3px solid var(--secondary-green);
            padding-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-green);
            margin-bottom: 1rem;
            line-height: 1.3;
            text-align: center;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: var(--light-brown);
            font-size: 0.95rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--dark-brown);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--soil-brown);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--secondary-green);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.5rem;
            color: var(--light-brown);
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight {
            background-color: #f0f7e9;
            border-left: 4px solid var(--secondary-green);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .emoji {
            font-size: 1.3em;
            margin: 0 3px;
        }
        strong {
            color: var(--primary-green);
            font-weight: 700;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            border: 5px solid var(--soil-brown);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: var(--transition);
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--light-brown);
            margin-top: -1.5rem;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        .form-section {
            background-color: #f8f9fa;
            border-radius: var(--border-radius);
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid #e9ecef;
        }
        .form-title {
            color: var(--primary-green);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark-brown);
        }
        input, select, textarea {
            padding: 0.8rem 1rem;
            border: 1px solid #ced4da;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
            font-family: inherit;
        }
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--secondary-green);
            box-shadow: 0 0 0 3px rgba(91, 163, 76, 0.2);
        }
        .rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 5px;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            margin-bottom: 0;
        }
        .rating input:checked ~ label {
            color: var(--accent-gold);
        }
        .rating label:hover,
        .rating label:hover ~ label {
            color: var(--accent-gold);
        }
        button, .btn {
            background: linear-gradient(to right, var(--primary-green), var(--secondary-green));
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: var(--border-radius);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, var(--secondary-green), var(--primary-green));
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
        }
        .btn-secondary {
            background: linear-gradient(to right, var(--light-brown), var(--soil-brown));
        }
        .btn-secondary:hover {
            background: linear-gradient(to right, var(--soil-brown), var(--light-brown));
        }
        .web-links-section {
            margin: 3rem 0;
            padding: 2rem;
            background-color: #f0f7e9;
            border-radius: var(--border-radius);
        }
        .web-links-title {
            color: var(--primary-green);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: white;
            padding: 1.2rem;
            border-radius: var(--border-radius);
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            border-left: 4px solid var(--secondary-green);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
        }
        .web-link a {
            color: var(--primary-green);
            text-decoration: none;
            font-weight: 600;
            display: block;
            transition: var(--transition);
        }
        .web-link a:hover {
            color: var(--secondary-green);
            text-decoration: underline;
        }
        .web-link p {
            margin-top: 0.5rem;
            font-size: 0.95rem;
            color: var(--light-brown);
            margin-bottom: 0;
        }
        footer {
            background: linear-gradient(135deg, var(--dark-brown) 0%, #2c3e50 100%);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-column h3 {
            color: var(--accent-gold);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid rgba(232, 185, 35, 0.3);
            padding-bottom: 0.7rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .social-links a:hover {
            background-color: var(--accent-gold);
            transform: translateY(-5px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
            .nav-links {
                gap: 1rem;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .logo {
                margin-bottom: 1rem;
            }
            nav {
                width: 100%;
                justify-content: space-between;
            }
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0;
                margin-top: 1rem;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                width: 100%;
            }
            .nav-links a {
                padding: 1rem;
                border-radius: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .hamburger {
                display: block;
            }
            article {
                padding: 1.5rem;
            }
            .form-grid {
                grid-template-columns: 1fr;
            }
            .web-links-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
