* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
        }
        :root {
            --primary: #FF6B35;
            --secondary: #004E89;
            --accent: #00A896;
            --light: #F7F9FC;
            --dark: #1A1A2E;
            --gray: #6C757D;
            --shadow: 0 5px 15px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light);
            color: #333;
            line-height: 1.8;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo i {
            color: var(--primary);
            margin-right: 10px;
        }
        .logo span {
            color: var(--accent);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 2rem;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-links a:hover, .nav-links a.active {
            background-color: rgba(255,107,53,0.2);
            color: var(--primary);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: rgba(255,255,255,0.1);
            padding: 10px 20px;
            margin-top: 10px;
            border-radius: 5px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #ddd;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .search-bar {
            margin: 2rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            box-shadow: var(--shadow);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: #e55a2b;
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        h1 {
            color: var(--dark);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-left: 6px solid var(--primary);
            padding-left: 20px;
        }
        h2 {
            color: var(--secondary);
            font-size: 2rem;
            margin: 2rem 0 1rem;
            padding-bottom: 10px;
            border-bottom: 2px dashed var(--accent);
        }
        h3 {
            color: var(--dark);
            font-size: 1.5rem;
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255,107,53,0.1);
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 8px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 2rem 0;
        }
        .stat-card {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: var(--shadow);
        }
        .stat-card:nth-child(2) {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }
        .stat-card:nth-child(3) {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            display: block;
        }
        .image-container {
            text-align: center;
            margin: 3rem 0;
        }
        .featured-img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            border: 5px solid white;
        }
        .interactive-section {
            background: var(--light);
            border-radius: 15px;
            padding: 2rem;
            margin: 3rem 0;
            border: 2px solid var(--accent);
        }
        .rating-section, .comment-section {
            margin-bottom: 2rem;
        }
        .rating-title, .comment-title {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        .rating-title i, .comment-title i {
            color: var(--primary);
            margin-right: 10px;
            font-size: 1.5rem;
        }
        .stars {
            display: flex;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            margin-right: 5px;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            color: #FFD700;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 5px;
            font-weight: 600;
            color: var(--dark);
        }
        input, textarea, select {
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            border-color: var(--accent);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0,168,150,0.2);
        }
        .submit-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-btn:hover {
            background: #e55a2b;
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255,107,53,0.3);
        }
        .footer-links {
            background: var(--dark);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 1.2rem;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255,107,53,0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ddd;
            text-decoration: none;
            font-size: 1.1rem;
            display: block;
        }
        .web-link a:hover {
            color: var(--primary);
        }
        footer {
            background: #0F0F1E;
            color: #aaa;
            text-align: center;
            padding: 2rem 0;
        }
        .copyright {
            font-size: 0.95rem;
            margin-top: 1rem;
            border-top: 1px solid #333;
            padding-top: 1.5rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.8rem; }
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--dark);
                flex-direction: column;
                padding: 1rem 0;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 0;
                text-align: center;
                padding: 15px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .hamburger {
                display: block;
            }
            .header-content {
                flex-wrap: wrap;
            }
        }
        @media (max-width: 768px) {
            .search-form { flex-direction: column; border-radius: 10px; }
            .search-input { border-radius: 10px 10px 0 0; }
            .search-btn { border-radius: 0 0 10px 10px; padding: 15px; }
            article { padding: 1.5rem; }
            .stats-grid { grid-template-columns: 1fr; }
        }
