        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #FF6B00;
            --secondary-color: #1A237E;
            --accent-color: #4CAF50;
            --light-color: #F5F5F5;
            --dark-color: #212121;
            --text-color: #333333;
            --text-light: #666666;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
            --container-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Arial', sans-serif;
            line-height: 1.8;
            color: var(--text-color);
            background-color: #ffffff;
            direction: ltr;
            text-align: left;
        }
        h1, h2, h3, h4, h5, h6 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            position: relative;
            padding-bottom: 0.5rem;
        }
        h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 4px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }
        h2 {
            font-size: 2rem;
            margin-top: 2.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light-color);
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
            color: var(--dark-color);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a {
            color: inherit;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            color: var(--secondary-color);
            font-size: 2.2rem;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            color: var(--dark-color);
            padding: 8px 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }
        .nav-desktop a:hover::after,
        .nav-desktop a.active::after {
            width: 100%;
        }
        .nav-desktop a:hover {
            text-decoration: none;
            color: var(--primary-color);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--dark-color);
            cursor: pointer;
            padding: 5px;
        }
        .mobile-nav {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: var(--shadow);
            padding: 20px;
            z-index: 999;
            flex-direction: column;
            gap: 1rem;
            transform: translateY(-100%);
            opacity: 0;
            transition: var(--transition);
        }
        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
            display: flex;
        }
        .search-container {
            position: relative;
            margin-left: auto;
            margin-right: 20px;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            padding: 10px 15px;
            border: 2px solid var(--light-color);
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            width: 250px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        .search-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            padding: 0 20px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-button:hover {
            background-color: var(--secondary-color);
        }
        .breadcrumb {
            background-color: var(--light-color);
            padding: 15px 0;
            margin-bottom: 30px;
        }
        .breadcrumb-list {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-light);
        }
        .breadcrumb-item a {
            color: var(--text-light);
        }
        .breadcrumb-item a:hover {
            color: var(--primary-color);
        }
        .breadcrumb-item:not(:last-child)::after {
            content: '>';
            font-size: 0.8rem;
        }
        main {
            padding: 40px 0;
            min-height: 80vh;
        }
        .article-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .article-content {
                grid-template-columns: 1fr;
            }
        }
        .article-main {
            background-color: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .article-image {
            margin: 30px 0;
            border-radius: var(--border-radius);
            overflow: hidden;
            position: relative;
        }
        .image-caption {
            padding: 15px;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            font-size: 0.9rem;
            text-align: center;
        }
        .highlight-box {
            background-color: #FFF3E0;
            border-left: 5px solid var(--primary-color);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .highlight-box h3 {
            color: var(--primary-color);
            margin-top: 0;
        }
        .steps {
            margin: 30px 0;
        }
        .step {
            display: flex;
            margin-bottom: 25px;
            background-color: var(--light-color);
            padding: 20px;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .step:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .step-number {
            background-color: var(--primary-color);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 20px;
            flex-shrink: 0;
        }
        .step-content h4 {
            margin-top: 0;
            color: var(--secondary-color);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            margin-top: 0;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-color);
            font-size: 1.3rem;
        }
        .widget-content ul {
            list-style: none;
        }
        .widget-content li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed var(--light-color);
        }
        .widget-content li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        .comments-section, .rating-section {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid var(--light-color);
        }
        .comment-form, .rating-form {
            background-color: var(--light-color);
            padding: 25px;
            border-radius: var(--border-radius);
            margin-top: 20px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #FFC107;
        }
        .submit-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-button:hover {
            background-color: var(--secondary-color);
        }
        .footer-links {
            background-color: var(--secondary-color);
            padding: 40px 0;
            margin-top: 60px;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 15px;
            margin-bottom: 15px;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateX(10px);
        }
        .web-link a {
            color: white;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            text-decoration: none;
            color: #FFD54F;
        }
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 40px 0 20px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        .text-bold {
            font-weight: 700;
        }
        .text-highlight {
            color: var(--primary-color);
            font-weight: 700;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .text-center {
            text-align: center;
        }
        .mt-1 { margin-top: 10px; }
        .mt-2 { margin-top: 20px; }
        .mt-3 { margin-top: 30px; }
        .mt-4 { margin-top: 40px; }
        .mt-5 { margin-top: 50px; }
        .mb-1 { margin-bottom: 10px; }
        .mb-2 { margin-bottom: 20px; }
        .mb-3 { margin-bottom: 30px; }
        .mb-4 { margin-bottom: 40px; }
        .mb-5 { margin-bottom: 50px; }
        @media (max-width: 1200px) {
            .container {
                padding: 0 15px;
            }
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .search-container {
                margin-right: 0;
                margin-left: 20px;
            }
            .search-input {
                width: 200px;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .article-main {
                padding: 20px;
            }
            .search-input {
                width: 150px;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .logo {
                font-size: 1.8rem;
            }
            .step {
                flex-direction: column;
            }
            .step-number {
                margin-right: 0;
                margin-bottom: 15px;
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 576px) {
            .search-form {
                display: none;
            }
            .mobile-search {
                display: block;
                margin-top: 15px;
            }
            .mobile-search .search-input {
                width: 100%;
            }
            .comment-form, .rating-form {
                padding: 15px;
            }
        }
        @media print {
            header, .breadcrumb, .sidebar, .comments-section, 
            .rating-section, .footer-links, footer, .search-container,
            .hamburger {
                display: none;
            }
            .article-content {
                grid-template-columns: 1fr;
            }
            body {
                font-size: 12pt;
                line-height: 1.5;
            }
        }
