* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #FF6B35;
            --secondary-color: #1A1A2E;
            --accent-color: #00B4D8;
            --text-color: #333;
            --light-bg: #F8F9FA;
            --border-color: #E0E0E0;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', Arial, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #fff;
            direction: ltr;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--secondary-color);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: white;
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            color: var(--primary-color);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-desktop a:hover, .nav-desktop a.active {
            background-color: var(--primary-color);
            color: white;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--secondary-color);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            z-index: 999;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            text-decoration: none;
            padding: 12px 16px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: var(--transition);
        }
        .nav-mobile a:hover {
            background-color: var(--primary-color);
            padding-left: 20px;
        }
        .breadcrumb {
            background-color: var(--light-bg);
            padding: 12px 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #888;
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-container {
            background: linear-gradient(135deg, var(--primary-color), #FF8E53);
            padding: 3rem 0;
            text-align: center;
            margin-bottom: 3rem;
            border-radius: 12px;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 5px;
            border-radius: 50px;
            display: flex;
            box-shadow: var(--shadow);
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 15px 25px;
            font-size: 1.1rem;
            border-radius: 50px 0 0 50px;
            outline: none;
        }
        .search-box button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background-color: #000;
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            margin-bottom: 3rem;
            text-align: center;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 2.2rem;
            }
        }
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: #666;
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .content-section {
            margin-bottom: 3.5rem;
            padding-bottom: 2.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .content-section h2 {
            color: var(--secondary-color);
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--primary-color);
        }
        .content-section h3 {
            color: var(--secondary-color);
            font-size: 1.7rem;
            margin: 2rem 0 1rem;
        }
        .content-section p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 107, 53, 0.1);
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .feature-card {
            background-color: var(--light-bg);
            padding: 1.8rem;
            border-radius: 10px;
            transition: var(--transition);
            border: 1px solid var(--border-color);
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-color: var(--primary-color);
        }
        .feature-card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .feature-card h4 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }
        .article-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .article-image img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: var(--shadow);
            border: 3px solid white;
            transition: var(--transition);
        }
        .article-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #666;
            font-size: 0.95rem;
        }
        .interactive-section {
            background-color: var(--light-bg);
            padding: 3rem;
            border-radius: 12px;
            margin: 4rem 0;
        }
        .tabs {
            display: flex;
            border-bottom: 2px solid var(--border-color);
            margin-bottom: 2rem;
        }
        .tab-button {
            padding: 1rem 2rem;
            background: none;
            border: none;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            color: #666;
            transition: var(--transition);
            position: relative;
        }
        .tab-button.active {
            color: var(--primary-color);
        }
        .tab-button.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 3px;
            background-color: var(--primary-color);
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .rating-section {
            text-align: center;
            padding: 2.5rem;
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            border-radius: 12px;
            margin: 3rem 0;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 1.5rem 0;
            direction: ltr;
        }
        .star {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            color: #FFD700;
            transform: scale(1.1);
        }
        .comment-form {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--secondary-color);
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 14px 32px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn:hover {
            background-color: #E55A2B;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        .btn-secondary {
            background-color: var(--secondary-color);
        }
        .btn-secondary:hover {
            background-color: #0F0F1E;
        }
        .footer-links {
            background-color: var(--light-bg);
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-link {
            margin-bottom: 1.5rem;
            padding: 1.2rem;
            background-color: white;
            border-radius: 8px;
            border-left: 4px solid var(--accent-color);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow);
        }
        .web-link a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
        }
        .web-link a:hover {
            color: var(--primary-color);
        }
        .web-link .link-desc {
            color: #666;
            font-size: 0.95rem;
            margin-top: 5px;
        }
        footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            width: 100%;
            color: #aaa;
            font-size: 0.95rem;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: var(--transition);
        }
        .social-links a:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        .text-center { text-align: center; }
        .text-primary { color: var(--primary-color); }
        .text-bold { font-weight: 700; }
        .emoji { font-size: 1.2em; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .mt-3 { margin-top: 3rem; }
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .interactive-section {
                padding: 2rem 1rem;
            }
            .tabs {
                flex-direction: column;
            }
            .search-container {
                padding: 2rem 15px;
            }
            .search-box {
                flex-direction: column;
                border-radius: 12px;
                padding: 0;
                background: transparent;
                gap: 10px;
            }
            .search-box input, .search-box button {
                border-radius: 8px;
                width: 100%;
            }
        }
        @media print {
            .interactive-section, .search-container, .nav-desktop, .hamburger, footer, .footer-links {
                display: none;
            }
        }
