* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary: #1a237e;
            --secondary: #ff5722;
            --accent: #4caf50;
            --dark: #121212;
            --light: #f5f5f5;
            --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;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #283593);
            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: 15px 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        .logo a:hover {
            color: var(--secondary);
            transition: var(--transition);
        }
        .search-form {
            display: flex;
            flex: 0 1 400px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #e64a19;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        nav {
            background: rgba(0,0,0,0.1);
            padding: 10px 0;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            padding: 8px 0;
            position: relative;
            font-weight: 600;
        }
        .nav-links a:hover {
            color: var(--secondary);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb a:hover {
            color: white;
        }
        main {
            padding: 40px 0;
            background: white;
            min-height: 80vh;
        }
        article {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            color: var(--primary);
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        h2 {
            color: var(--primary);
            font-size: 1.8rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        h3 {
            color: var(--secondary);
            font-size: 1.4rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background: #e3f2fd;
            padding: 25px;
            border-left: 5px solid var(--primary);
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .feature-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 30px auto;
            display: block;
        }
        .interactive-section {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            box-shadow: var(--shadow);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ffc107;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
            transition: var(--transition);
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            resize: vertical;
        }
        button[type="submit"] {
            background: var(--accent);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            align-self: flex-start;
            transition: var(--transition);
        }
        button[type="submit"]:hover {
            background: #388e3c;
            transform: translateY(-2px);
        }
        .longtail-links {
            background: #2d2d2d;
            padding: 40px 0;
            color: #ddd;
        }
        .web-link {
            display: inline-block;
            margin: 10px 20px 10px 0;
            padding: 8px 15px;
            background: #3d3d3d;
            border-radius: 4px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: var(--secondary);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background: var(--dark);
            color: #aaa;
            text-align: center;
            padding: 30px 0;
            font-size: 0.9rem;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }
        .footer-links a:hover {
            color: var(--secondary);
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                flex: 1 1 100%;
                margin-top: 15px;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                flex-direction: column;
                display: none;
                gap: 0;
                background: var(--primary);
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                padding: 20px;
                box-shadow: var(--shadow);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                padding: 12px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .interactive-section {
                padding: 20px;
            }
        }
