        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #FF6B00;
            --secondary-color: #2E8B57;
            --accent-color: #FFD700;
            --dark-color: #1A1A2E;
            --light-color: #F8F9FA;
            --text-color: #333333;
            --gray-color: #6C757D;
            --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-body: 'Nirmala UI', 'Noto Sans Devanagari', sans-serif;
        }
        body {
            font-family: var(--font-body);
            line-height: 1.8;
            color: var(--text-color);
            background-color: var(--light-color);
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            color: var(--dark-color);
            margin-bottom: 1rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            border-left: 6px solid var(--accent-color);
            padding-left: 20px;
            margin-top: 1.5rem;
        }
        h2 {
            font-size: 2.2rem;
            border-bottom: 3px solid var(--secondary-color);
            padding-bottom: 10px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--dark-color);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: white;
            text-decoration: none;
        }
        .logo-icon {
            color: var(--primary-color);
            font-size: 2.5rem;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: var(--primary-color);
            text-decoration: none;
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #E9ECEF;
            padding: 12px 0;
            margin-bottom: 2rem;
            border-radius: 0 0 8px 8px;
        }
        .breadcrumb-list {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb-item {
            font-size: 0.95rem;
        }
        .breadcrumb-item:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: var(--gray-color);
        }
        .breadcrumb-item a {
            color: var(--gray-color);
        }
        .breadcrumb-item.active {
            color: var(--primary-color);
            font-weight: 600;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        .content-area {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.06);
        }
        .widget-title {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 1.2rem;
            padding-bottom: 8px;
            border-bottom: 2px dashed var(--accent-color);
        }
        .search-form {
            display: flex;
            margin-bottom: 2rem;
            border: 2px solid var(--primary-color);
            border-radius: 50px;
            overflow: hidden;
            background: white;
        }
        .search-input {
            flex: 1;
            padding: 16px 22px;
            border: none;
            font-size: 1.1rem;
            font-family: var(--font-body);
        }
        .search-input:focus {
            outline: none;
        }
        .search-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 28px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-button:hover {
            background-color: var(--secondary-color);
        }
        .rating-widget, .comments-widget {
            background-color: #FFF9E6;
            border-left: 5px solid var(--accent-color);
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin: 1.5rem 0;
            font-size: 2.2rem;
            color: #FFD700;
        }
        .star {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .star:hover {
            transform: scale(1.2);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-label {
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-color);
        }
        .form-input, .form-textarea {
            padding: 14px;
            border: 1px solid #CED4DA;
            border-radius: 8px;
            font-family: var(--font-body);
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-input:focus, .form-textarea:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-submit {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .form-submit:hover {
            background-color: #247A48;
            transform: translateY(-3px);
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            position: relative;
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            padding: 15px;
            background-color: rgba(26, 26, 46, 0.85);
            color: white;
            font-style: italic;
            font-size: 1rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #FFF9E6 0%, #FFEBB2 100%);
            border-left: 6px solid var(--accent-color);
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .tip {
            background-color: #E8F4FD;
            border-left: 5px solid #2196F3;
            padding: 1.5rem;
            margin: 1.8rem 0;
            border-radius: 0 8px 8px 0;
        }
        .tip-title {
            color: #0D47A1;
            font-weight: 700;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .statistics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: white;
            padding: 1.8rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-top: 5px solid var(--primary-color);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-10px);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .stat-label {
            font-size: 1.1rem;
            color: var(--gray-color);
            margin-top: 0.8rem;
        }
        .internal-links {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.2rem;
            margin-top: 1.5rem;
        }
        .web-link {
            background-color: rgba(255,255,255,0.1);
            padding: 1.2rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            border-left: 4px solid var(--accent-color);
        }
        .web-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateX(10px);
        }
        .web-link a {
            color: white;
            font-weight: 600;
            display: block;
        }
        footer {
            background-color: #111;
            color: #AAA;
            padding: 3rem 0 1.5rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        .footer-about {
            line-height: 1.7;
        }
        .footer-links h4, .footer-social h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .social-icons {
            display: flex;
            gap: 1.2rem;
            font-size: 1.8rem;
        }
        .social-icons a {
            color: #AAA;
            transition: color 0.3s, transform 0.3s;
        }
        .social-icons a:hover {
            color: var(--accent-color);
            transform: translateY(-5px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            font-size: 0.95rem;
            color: #777;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .sidebar {
                order: -1;
            }
            .statistics-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: var(--dark-color);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1.5rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
                z-index: 999;
            }
            .nav-links.active {
                display: flex;
            }
            .statistics-grid {
                grid-template-columns: 1fr;
            }
            .content-area {
                padding: 1.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 15px;
            }
            .logo a {
                font-size: 1.8rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 12px;
            }
            .search-input, .search-button {
                width: 100%;
                border-radius: 0;
                padding: 18px;
            }
            .featured-image {
                margin: 1.5rem 0;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content-area, .sidebar-widget {
            animation: fadeIn 0.8s ease-out;
        }
        @media print {
            header, .sidebar, .internal-links, footer, .search-form, .rating-widget, .comments-widget {
                display: none;
            }
            body {
                background-color: white;
                color: black;
            }
            .container {
                max-width: 100%;
                padding: 0;
            }
            a {
                color: black;
                text-decoration: underline;
            }
            .content-area {
                box-shadow: none;
                padding: 0;
            }
        }
