        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', system-ui, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #f0e6d6 100%);
            color: #333;
            line-height: 1.7;
            font-size: 1.1rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            text-decoration: none;
            color: #d4a017;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #b8860b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .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;
        }
        header {
            background: #1a472a;
            color: #fff;
            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;
            padding: 15px 20px;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .logo span {
            color: #fff;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            color: #fff;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background: rgba(255, 255, 255, 0.15);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #2c5e3e;
            padding: 20px;
            gap: 15px;
            border-top: 1px solid #3a7d56;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #fff;
            padding: 12px;
            border-bottom: 1px solid #3a7d56;
        }
        .breadcrumb {
            background: #e9f5eb;
            padding: 12px 20px;
            font-size: 0.95rem;
            color: #555;
            border-bottom: 1px solid #c1e1cc;
        }
        .breadcrumb a {
            color: #1a472a;
        }
        .breadcrumb span {
            margin: 0 8px;
            color: #888;
        }
        .search-container {
            background: #fff;
            padding: 40px 20px;
            text-align: center;
            border-bottom: 3px solid #d4a017;
            margin-bottom: 30px;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-button {
            background: #d4a017;
            color: #fff;
            border: none;
            padding: 0 30px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-button:hover {
            background: #b8860b;
        }
        main {
            flex: 1;
            padding: 20px 0 40px;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            background: linear-gradient(90deg, #1a472a, #2c5e3e);
            color: #fff;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(26, 71, 42, 0.3);
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            line-height: 1.2;
            color: #ffd700;
        }
        .article-header .meta {
            font-size: 1rem;
            opacity: 0.9;
        }
        .content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background: #fff;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            line-height: 1.8;
        }
        .article-body h2 {
            color: #1a472a;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #d4a017;
        }
        .article-body h3 {
            color: #2c5e3e;
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        .article-body p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.15rem;
        }
        .article-body strong {
            color: #b8860b;
            font-weight: 700;
        }
        .article-body em {
            color: #555;
            font-style: italic;
        }
        .highlight-box {
            background: #f9f3e9;
            border-left: 5px solid #d4a017;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .feature-img {
            margin: 30px auto;
            text-align: center;
        }
        .feature-img figcaption {
            font-size: 0.95rem;
            color: #666;
            margin-top: 10px;
            font-style: italic;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 8px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: #fff;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            color: #1a472a;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
            font-size: 1.5rem;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ddd;
            margin-bottom: 10px;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars .star.active,
        .rating-stars .star:hover {
            color: #ffc107;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
            color: #555;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #d4a017;
        }
        .submit-btn {
            background: #1a472a;
            color: #fff;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 10px;
        }
        .submit-btn:hover {
            background: #2c5e3e;
        }
        .web-links-section {
            margin: 50px 0;
            padding: 30px;
            background: #f0e6d6;
            border-radius: 15px;
        }
        .web-links-section h2 {
            text-align: center;
            color: #1a472a;
            margin-bottom: 30px;
            font-size: 2rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: #2c5e3e;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: #1a472a;
            color: #fff;
            margin-top: auto;
        }
        .footer-top {
            padding: 40px 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            border-bottom: 1px solid #3a7d56;
        }
        .footer-col h3 {
            color: #ffd700;
            margin-bottom: 25px;
            font-size: 1.5rem;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 12px;
        }
        .footer-col ul li a {
            color: #eee;
        }
        .footer-col ul li a:hover {
            color: #ffd700;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding: 25px 20px;
            font-size: 0.95rem;
            color: #ccc;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .article-body {
                padding: 25px;
            }
            .article-body h2 {
                font-size: 1.7rem;
            }
            .article-body h3 {
                font-size: 1.4rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 15px;
            }
            .search-input, .search-button {
                width: 100%;
                border-radius: 0;
                padding: 18px;
            }
            .web-links-container {
                grid-template-columns: 1fr;
            }
        }
