* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary: #1a237e;
            --secondary: #ff5722;
            --accent: #4caf50;
            --light: #f5f5f5;
            --dark: #212121;
            --gray: #757575;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #283593);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        .search-box {
            display: flex;
            flex: 0 1 400px;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #e64a19;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 5px;
            margin-top: 1rem;
        }
        nav li {
            margin: 0 5px;
        }
        nav a {
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 8px;
            display: block;
            transition: var(--transition);
            font-weight: 600;
        }
        nav a:hover, nav a.active {
            background: var(--secondary);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a {
            color: #ffcc80;
            text-decoration: none;
        }
        main {
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--primary);
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.3;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 15px;
        }
        h2 {
            color: var(--primary);
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px dashed var(--accent);
        }
        h3 {
            color: var(--dark);
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background: #e3f2fd;
            border-left: 5px solid var(--primary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .feature-img {
            width: 100%;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.01);
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat {
            background: linear-gradient(145deg, #e0e0e0, #ffffff);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: var(--shadow);
        }
        .stat i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 10px;
        }
        aside {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: var(--shadow);
            align-self: start;
        }
        .rating-widget, .comment-widget {
            margin-bottom: 30px;
        }
        .rating-widget h3, .comment-widget h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 15px 0;
        }
        .stars i {
            color: #ffc107;
            font-size: 1.8rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-form button, .comment-form button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .rating-form button:hover, .comment-form button:hover {
            background: #388e3c;
        }
        textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            resize: vertical;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 40px 0;
            padding: 30px;
            background: #e8eaf6;
            border-radius: 15px;
        }
        .web-link {
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: var(--secondary);
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .header-top {
                flex-direction: column;
                align-items: stretch;
                gap: 20px;
            }
            .search-box {
                flex: 1;
                order: 3;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            nav ul {
                flex-direction: column;
                display: none;
                margin-top: 20px;
            }
            nav.active ul {
                display: flex;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
            .footer-content {
                flex-direction: column;
            }
        }
