:root {
            --primary: #2c3e50;
            --secondary: #e74c3c;
            --accent: #1abc9c;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --gray: #7f8c8d;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Arial', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--primary);
            color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent);
        }
        .logo span {
            color: var(--accent);
        }
        .search-form {
            display: flex;
            width: 300px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #c0392b;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav {
            background-color: rgba(44, 62, 80, 0.95);
        }
        .nav-links {
            display: flex;
            list-style: none;
            justify-content: center;
            padding: 0;
        }
        .nav-links li {
            position: relative;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            padding: 18px 22px;
            display: inline-block;
            font-weight: 600;
            transition: var(--transition);
            font-size: 1.05rem;
        }
        .nav-links a:hover,
        .nav-links a.active {
            background-color: var(--accent);
            color: var(--primary);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #f1f2f6;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-content {
            background: white;
            border-radius: 10px;
            padding: 35px;
            box-shadow: var(--shadow);
        }
        .article-header {
            margin-bottom: 30px;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 20px;
        }
        .article-header h1 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.3;
        }
        .meta {
            display: flex;
            gap: 20px;
            color: var(--gray);
            font-size: 0.95rem;
        }
        .meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 25px 0;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }
        .content-section {
            margin-bottom: 40px;
        }
        h2 {
            font-size: 1.9rem;
            color: var(--secondary);
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #ddd;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 5px solid var(--accent);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        .feature-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #e9ecef;
            transition: var(--transition);
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-color: var(--accent);
        }
        .feature-card i {
            color: var(--accent);
            font-size: 2rem;
            margin-bottom: 15px;
        }
        .feature-card h4 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        .steps {
            counter-reset: step-counter;
            margin: 25px 0;
        }
        .step {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 15px;
            padding-left: 70px;
            position: relative;
            transition: var(--transition);
        }
        .step:hover {
            border-color: var(--accent);
        }
        .step::before {
            counter-increment: step-counter;
            content: counter(step-counter);
            position: absolute;
            left: 20px;
            top: 20px;
            background: var(--secondary);
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        .interview {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .interview h3 {
            color: var(--secondary);
        }
        .qa {
            margin: 20px 0;
            padding-left: 20px;
            border-left: 3px solid var(--primary);
        }
        .question {
            font-weight: bold;
            color: var(--primary);
        }
        .answer {
            margin-top: 5px;
            color: #555;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .sidebar-widget {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            margin-top: 0;
            color: var(--secondary);
            font-size: 1.4rem;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        .download-box {
            text-align: center;
            background: linear-gradient(to right, var(--primary), #34495e);
            color: white;
            padding: 25px;
            border-radius: 10px;
        }
        .download-box h3 {
            color: white;
            border: none;
        }
        .download-btn {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            margin: 15px 0;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        .download-btn:hover {
            background: #16a085;
            transform: scale(1.05);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ddd;
            margin: 10px 0;
        }
        .stars .active {
            color: #ffc107;
        }
        .rating-widget input,
        .rating-widget textarea,
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
        }
        .rating-widget button,
        .comment-form button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .rating-widget button:hover,
        .comment-form button:hover {
            background: #c0392b;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            margin: 40px 0;
        }
        .web-link {
            background: white;
            padding: 15px;
            border-radius: 6px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: block;
            text-align: center;
        }
        .web-link a:hover {
            color: var(--secondary);
        }
        footer {
            background-color: var(--primary);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--accent);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bbb;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                width: 100%;
                margin-top: 15px;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 100%;
                left: 0;
                background-color: var(--primary);
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links a {
                padding: 15px 20px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 576px) {
            .meta {
                flex-direction: column;
                gap: 10px;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
            .article-content {
                padding: 20px;
            }
        }
        @media print {
            header, .sidebar, .web-links, footer, .breadcrumb, .search-form, .hamburger {
                display: none;
            }
            main {
                display: block;
            }
            .article-content {
                box-shadow: none;
                padding: 0;
            }
        }
