        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #f97316;
            --primary-dark: #ea580c;
            --secondary: #1e293b;
            --light: #f8fafc;
            --dark: #0f172a;
            --gray: #64748b;
            --success: #22c55e;
            --warning: #eab308;
            --danger: #ef4444;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f1f5f9;
            color: #334155;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul, ol {
            list-style-position: inside;
            padding-left: 1rem;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section {
            padding: 60px 0;
        }
        h1, h2, h3, h4, h5, h6 {
            color: var(--dark);
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-dark);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--primary);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--secondary);
        }
        .highlight {
            background-color: #fffbeb;
            border-left: 4px solid var(--warning);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .note {
            background-color: #f0f9ff;
            border-left: 4px solid #0ea5e9;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .warning {
            background-color: #fef2f2;
            border-left: 4px solid var(--danger);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .success {
            background-color: #f0fdf4;
            border-left: 4px solid var(--success);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        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: 900;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: var(--secondary);
        }
        .logo:hover {
            color: var(--primary-dark);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-list {
            display: flex;
            gap: 30px;
        }
        .nav-list a {
            font-weight: 600;
            color: var(--secondary);
            padding: 8px 0;
            position: relative;
        }
        .nav-list a:hover {
            color: var(--primary);
        }
        .nav-list a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }
        .nav-list a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: var(--secondary);
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e2e8f0;
            padding: 15px 20px;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        main {
            background-color: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        aside {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e2e8f0;
        }
        .search-form {
            display: flex;
            margin-bottom: 20px;
        }
        .search-input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #cbd5e1;
            border-right: none;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-input:focus {
            border-color: var(--primary);
        }
        .search-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: var(--primary-dark);
        }
        .comment-form, .rating-form {
            background-color: #f8fafc;
            padding: 25px;
            border-radius: 8px;
            margin-top: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--secondary);
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #cbd5e1;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .submit-btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #cbd5e1;
            cursor: pointer;
            margin-bottom: 15px;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--warning);
        }
        .featured-img {
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .internal-links {
            background-color: white;
            padding: 40px 20px;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: #f8fafc;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid var(--primary);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: #f1f5f9;
            transform: translateY(-5px);
        }
        .web-link a {
            font-weight: 600;
            color: var(--secondary);
            display: block;
        }
        .web-link a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        footer {
            background-color: var(--secondary);
            color: #cbd5e1;
            padding-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            padding-bottom: 40px;
        }
        .footer-section h3 {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary);
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding: 25px;
            background-color: var(--dark);
            font-size: 0.95rem;
            border-top: 1px solid #334155;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-list {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
                border-top: 1px solid #e2e8f0;
            }
            .nav-list.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                padding: 15px;
            }
            main, aside {
                padding: 25px;
            }
            .content-wrapper {
                padding: 20px 15px;
            }
            .section {
                padding: 40px 0;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .lead {
                font-size: 1.1rem;
            }
            .submit-btn {
                width: 100%;
                justify-content: center;
            }
        }
        .text-center {
            text-align: center;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
        .mt-30 {
            margin-top: 30px;
        }
        .flex {
            display: flex;
        }
        .items-center {
            align-items: center;
        }
        .gap-10 {
            gap: 10px;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .strong {
            font-weight: 700;
            color: var(--dark);
        }
        .primary-color {
            color: var(--primary);
        }
