* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.6;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #2563eb;
            transition: color 0.3s;
        }
        a:hover {
            color: #1d4ed8;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            font-size: 2.5rem;
        }
        .logo-text {
            font-family: 'Arial Black', sans-serif;
            letter-spacing: -0.5px;
        }
        .main-nav {
            display: flex;
            align-items: center;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-list a {
            color: #e0f2fe;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s;
            text-decoration: none;
        }
        .nav-list a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: white;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            background-color: #e0f2fe;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #bae6fd;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb a {
            color: #1e40af;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.5rem;
            color: #64748b;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-section {
            background-color: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
        }
        .article-section h1 {
            color: #1e3a8a;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            border-bottom: 3px solid #3b82f6;
            padding-bottom: 0.5rem;
            line-height: 1.3;
        }
        .article-section h2 {
            color: #1e40af;
            font-size: 1.8rem;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #93c5fd;
        }
        .article-section h3 {
            color: #3730a3;
            font-size: 1.4rem;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        .article-section p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.1rem;
            color: #4b5563;
        }
        .highlight {
            background-color: #fef3c7;
            border-left: 5px solid #f59e0b;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .tip-box {
            background-color: #dbeafe;
            border: 2px solid #60a5fa;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            position: relative;
        }
        .tip-box::before {
            content: '💡';
            position: absolute;
            left: -15px;
            top: -15px;
            background: white;
            border-radius: 50%;
            padding: 8px;
            font-size: 1.5rem;
            border: 2px solid #60a5fa;
        }
        .step-list {
            counter-reset: step-counter;
            list-style: none;
            margin: 2rem 0;
        }
        .step-list li {
            counter-increment: step-counter;
            margin-bottom: 1.5rem;
            padding-left: 3.5rem;
            position: relative;
            font-size: 1.1rem;
        }
        .step-list li::before {
            content: counter(step-counter);
            background-color: #3b82f6;
            color: white;
            font-weight: bold;
            border-radius: 50%;
            width: 2.5rem;
            height: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            left: 0;
            top: -0.3rem;
            box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
        }
        .featured-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border: 5px solid #e0f2fe;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #6b7280;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .sidebar-widget {
            background-color: white;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
        }
        .sidebar-widget h3 {
            color: #1e3a8a;
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #93c5fd;
        }
        .search-box {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-box input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #cbd5e1;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-box input:focus {
            border-color: #3b82f6;
        }
        .search-box button {
            background-color: #3b82f6;
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            padding: 0 1.5rem;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .search-box button:hover {
            background-color: #2563eb;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            margin: 1rem 0;
            cursor: pointer;
        }
        .rating-stars .star {
            color: #d1d5db;
            transition: color 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #fbbf24;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: #4b5563;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.8rem 1rem;
            border: 2px solid #cbd5e1;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #3b82f6;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background-color: #10b981;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 1rem;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
        }
        .submit-btn:hover {
            background-color: #059669;
            transform: translateY(-2px);
        }
        .footer-links {
            background-color: #1e293b;
            color: #cbd5e1;
            padding: 2.5rem 0;
            margin-top: 3rem;
        }
        .web-link {
            display: inline-block;
            margin: 0.8rem 1.5rem 0.8rem 0;
            padding: 0.6rem 1.2rem;
            background-color: #334155;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .web-link a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 500;
        }
        .web-link:hover {
            background-color: #3b82f6;
            transform: translateY(-3px);
        }
        .site-footer {
            background-color: #0f172a;
            color: #94a3b8;
            text-align: center;
            padding: 2rem 0;
        }
        .copyright {
            font-size: 0.95rem;
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background-color: #1e3a8a;
                width: 80%;
                max-width: 300px;
                height: calc(100vh - 70px);
                padding: 2rem;
                transition: right 0.4s ease-in-out;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
                z-index: 999;
            }
            .nav-list.active {
                right: 0;
            }
            .article-section {
                padding: 1.5rem;
            }
            .article-section h1 {
                font-size: 2rem;
            }
            .article-section h2 {
                font-size: 1.6rem;
            }
            .logo {
                font-size: 1.6rem;
            }
            .logo-icon {
                font-size: 2rem;
            }
        }
        @media print {
            .site-header, .sidebar, .footer-links, .site-footer, .search-box, .rating-form, .comment-form {
                display: none;
            }
            body {
                background-color: white;
            }
            .container {
                max-width: 100%;
            }
        }
