:root {
            --primary-color: #d97706;
            --secondary-color: #059669;
            --dark-color: #1f2937;
            --light-color: #f3f4f6;
            --text-color: #374151;
            --highlight-color: #dc2626;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        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: #fff;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
        }
        .btn:hover {
            background: #b45309;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .btn-secondary {
            background: var(--secondary-color);
        }
        .btn-secondary:hover {
            background: #047857;
        }
        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: 15px 20px;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        .logo span {
            color: var(--dark-color);
        }
        .desktop-nav ul {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a:hover {
            color: var(--primary-color);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark-color);
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: white;
            padding: 20px;
            box-shadow: var(--shadow);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px;
            border-bottom: 1px solid #eee;
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background: var(--light-color);
            color: var(--primary-color);
        }
        .breadcrumb {
            background: var(--light-color);
            padding: 15px 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary-color);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 40px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 0 20px;
        }
        .article-header h1 {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 20px;
            line-height: 1.3;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: #6b7280;
            font-size: 0.9rem;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .article-meta span i {
            margin-right: 5px;
        }
        .featured-image {
            margin: 30px 0 40px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s;
        }
        .featured-image:hover img {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #6b7280;
            padding: 10px;
            background: #f9fafb;
            font-size: 0.9rem;
        }
        .content-section {
            margin-bottom: 50px;
        }
        h2, h3, h4 {
            color: var(--dark-color);
            margin-top: 1.5em;
            margin-bottom: 0.8em;
            line-height: 1.3;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 10px;
            display: inline-block;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--secondary-color);
        }
        h4 {
            font-size: 1.2rem;
            color: #4b5563;
        }
        p {
            margin-bottom: 1.5em;
            text-align: justify;
        }
        .highlight {
            background-color: #fef3c7;
            border-left: 4px solid var(--primary-color);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .tip-box {
            background-color: #d1fae5;
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .tip-box h4 {
            color: var(--secondary-color);
            margin-top: 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-10px);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        .stat-desc {
            color: var(--text-color);
            font-size: 0.95rem;
        }
        .interview-section {
            background: #f8fafc;
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #e5e7eb;
        }
        .interview-question {
            font-weight: 600;
            color: var(--dark-color);
            margin-top: 20px;
        }
        .interview-answer {
            background: white;
            padding: 15px;
            border-radius: 8px;
            margin-top: 5px;
            border-left: 3px solid var(--primary-color);
        }
        .interactive-section {
            background: linear-gradient(135deg, #fef3c7 0%, #d1fae5 100%);
            border-radius: 15px;
            padding: 40px;
            margin: 50px 0;
            text-align: center;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            display: flex;
            box-shadow: var(--shadow);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1rem;
            outline: none;
        }
        .search-button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-button:hover {
            background: #b45309;
        }
        .rating-section, .comment-section {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: var(--shadow);
        }
        .rating-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 20px 0;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 15px 0;
            direction: ltr;
        }
        .star {
            font-size: 2rem;
            color: #d1d5db;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #fbbf24;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 30px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-color);
        }
        .form-control {
            padding: 15px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.2);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .long-tail-links {
            background: var(--dark-color);
            padding: 40px 20px;
            margin-top: 60px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }
        .web-link a {
            color: #e5e7eb;
            display: block;
        }
        .web-link a:hover {
            color: white;
            text-decoration: underline;
        }
        footer {
            background: #111827;
            color: #9ca3af;
            padding: 50px 20px 30px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
        }
        .footer-about p {
            margin-bottom: 20px;
        }
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #374151;
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }
        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-5px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #374151;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .header-container {
                padding: 15px;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .interactive-section {
                padding: 30px 20px;
            }
        }
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 1.7rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .search-box {
                flex-direction: column;
                border-radius: 15px;
            }
            .search-input, .search-button {
                width: 100%;
                border-radius: 0;
                padding: 15px;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .article-meta {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            .btn {
                padding: 10px 20px;
            }
            .rating-section, .comment-section {
                padding: 20px 15px;
            }
        }
