* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.6;
        }
        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #10b981;
            --dark: #1f2937;
            --light: #f9fafb;
            --gray: #6b7280;
            --border: #e5e7eb;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --radius: 8px;
        }
        body {
            background-color: #f8fafc;
            color: #334155;
            direction: ltr;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: var(--primary-dark);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        header {
            background-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: 1rem 0;
            border-bottom: 1px solid var(--border);
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--primary);
        }
        .search-box {
            display: flex;
            flex: 0 1 400px;
        }
        .search-box input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 2px solid var(--border);
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
        }
        .search-box button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-box button:hover {
            background-color: var(--primary-dark);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
        }
        nav {
            padding: 1rem 0;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            justify-content: center;
        }
        .nav-links a {
            color: var(--dark);
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--primary);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #f1f5f9;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.5rem;
            color: var(--gray);
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        article {
            background-color: white;
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow);
        }
        h1 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 1.8rem;
            color: var(--dark);
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border);
        }
        h3 {
            font-size: 1.4rem;
            color: var(--dark);
            margin: 1.5rem 0 0.75rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            color: var(--gray);
            font-weight: 500;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #dbeafe;
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .feature-img {
            width: 100%;
            border-radius: var(--radius);
            margin: 2rem 0;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .tip-card {
            background: #f0f9ff;
            padding: 1.5rem;
            border-radius: var(--radius);
            border: 1px solid #bae6fd;
        }
        .tip-card i {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .widget {
            background-color: white;
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            margin-top: 0;
            font-size: 1.2rem;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.5rem;
            color: #fbbf24;
            margin: 1rem 0;
        }
        .stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            margin-bottom: 1rem;
            resize: vertical;
            min-height: 120px;
        }
        .comment-form button {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius);
            cursor: pointer;
            width: 100%;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .comment-form button:hover {
            background-color: #0da271;
        }
        .footer-links {
            background-color: #1e293b;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background-color: #334155;
            padding: 1rem;
            border-radius: var(--radius);
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            background-color: #475569;
            transform: translateY(-3px);
        }
        .web-link a {
            color: #e2e8f0;
            display: block;
        }
        footer {
            background-color: var(--dark);
            color: #cbd5e1;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            padding-top: 2rem;
            border-top: 1px solid #374151;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .nav-links {
                gap: 1rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
                gap: 1rem;
            }
            .search-box {
                order: 3;
                flex: 1 0 100%;
                margin-top: 1rem;
            }
            .mobile-toggle {
                display: block;
            }
            nav {
                display: none;
                padding: 1rem 0 0;
            }
            nav.active {
                display: block;
            }
            .nav-links {
                flex-direction: column;
                gap: 0;
            }
            .nav-links li {
                border-bottom: 1px solid var(--border);
            }
            .nav-links a {
                display: block;
                padding: 0.75rem 0;
            }
            h1 {
                font-size: 2rem;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
