        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #FF6B00;
            --secondary: #00A8FF;
            --dark: #1A1A2E;
            --light: #F5F7FA;
            --text: #333333;
            --accent: #9D4EDD;
            --success: #2ECC71;
            --warning: #F39C12;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.8;
            color: var(--text);
            background-color: var(--light);
            font-size: 18px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, #16213E 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-decoration: none;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: white;
            text-shadow: 0 2px 4px rgba(255, 107, 0, 0.5);
        }
        .logo:hover {
            transform: scale(1.05);
            transition: var(--transition);
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: var(--transition);
        }
        .desktop-nav a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .mobile-nav a:hover {
            background-color: var(--primary);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 1rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: #6c757d;
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            margin-bottom: 3rem;
            text-align: center;
        }
        .article-header h1 {
            font-size: 3rem;
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            font-size: 0.9rem;
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .featured-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .content-section {
            margin-bottom: 3rem;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--dark);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--primary);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 107, 0, 0.1);
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary);
            display: block;
            line-height: 1;
        }
        .stat-label {
            font-size: 1.1rem;
            color: var(--dark);
            margin-top: 0.5rem;
        }
        .interactive-section {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            margin: 3rem 0;
            box-shadow: var(--shadow);
        }
        .search-box {
            display: flex;
            margin-bottom: 2rem;
        }
        .search-box input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-box button {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: #0088CC;
        }
        .rating-system {
            text-align: center;
            margin: 2rem 0;
        }
        .stars {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            margin: 1rem 0;
        }
        .stars .star {
            margin: 0 5px;
            transition: var(--transition);
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--warning);
            transform: scale(1.2);
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-btn:hover {
            background-color: #E55A00;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255, 107, 0, 0.3);
        }
        .footer-links {
            background-color: var(--dark);
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            border-left: 4px solid var(--primary);
            padding: 1rem 1.5rem;
            margin-bottom: 1rem;
            border-radius: 0 5px 5px 0;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(10px);
        }
        .web-link a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            display: block;
        }
        .web-link a:hover {
            color: var(--primary);
        }
        footer {
            background-color: #0F0F1E;
            color: #aaa;
            padding: 3rem 0 1.5rem;
            text-align: center;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .article-header h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            .featured-image {
                height: 400px;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-content {
                padding: 0 15px;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .featured-image {
                height: 300px;
            }
            .interactive-section {
                padding: 1.5rem;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
            body {
                font-size: 16px;
            }
        }
        @media (max-width: 480px) {
            .article-header h1 {
                font-size: 1.8rem;
            }
            .featured-image {
                height: 250px;
            }
            .logo {
                font-size: 1.8rem;
            }
            .stars {
                font-size: 2rem;
            }
        }
        @media print {
            .desktop-nav,
            .hamburger,
            .interactive-section,
            .footer-links,
            .search-box,
            .rating-system,
            .comment-form {
                display: none;
            }
            body {
                font-size: 12pt;
                color: black;
                background: white;
            }
            .container {
                max-width: 100%;
                padding: 0;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
