* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary-blue: #1a6bc4;
            --secondary-blue: #0d8af0;
            --accent-orange: #ff9800;
            --light-bg: #f0f8ff;
            --dark-text: #222;
            --light-text: #555;
            --border-color: #ddd;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #fff;
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            text-decoration: none;
            color: var(--primary-blue);
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-orange);
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
            background: linear-gradient(to right, var(--secondary-blue), var(--accent-orange));
        }
        .section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 2.2rem;
            margin-bottom: 30px;
            color: var(--primary-blue);
            text-align: center;
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--accent-orange);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        header {
            background: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent-orange);
        }
        .desktop-nav ul {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--dark-text);
        }
        .desktop-nav a:hover {
            color: var(--accent-orange);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-blue);
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: white;
            padding: 20px;
            box-shadow: var(--shadow);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px;
            border-bottom: 1px solid var(--border-color);
            font-weight: 600;
        }
        .breadcrumb {
            background: var(--light-bg);
            padding: 15px 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--light-text);
        }
        .breadcrumb span {
            color: var(--accent-orange);
        }
        .hero {
            background: linear-gradient(135deg, #e3f2fd, #f0f8ff);
            padding: 80px 20px;
            text-align: center;
        }
        .hero h1 {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        .hero p {
            font-size: 1.3rem;
            color: var(--light-text);
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .search-box h3 {
            margin-bottom: 20px;
            color: var(--primary-blue);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid var(--border-color);
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            padding: 15px 30px;
            background: var(--primary-blue);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: 600;
        }
        .content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        .main-content h2 {
            font-size: 1.8rem;
            margin: 30px 0 20px;
            color: var(--primary-blue);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        .main-content h3 {
            font-size: 1.5rem;
            margin: 25px 0 15px;
            color: var(--secondary-blue);
        }
        .main-content p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
            color: var(--dark-text);
        }
        .main-content ul {
            list-style: disc inside;
            margin-bottom: 20px;
            padding-left: 20px;
        }
        .main-content li {
            margin-bottom: 10px;
        }
        .highlight {
            background: #fff9e6;
            padding: 20px;
            border-left: 5px solid var(--accent-orange);
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .feature-img {
            margin: 30px auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            max-width: 800px;
        }
        .feature-img img {
            width: 100%;
            height: auto;
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: var(--light-text);
            margin-top: 10px;
        }
        .sidebar {
            background: var(--light-bg);
            padding: 25px;
            border-radius: 15px;
            height: fit-content;
        }
        .sidebar h3 {
            color: var(--primary-blue);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        .rating-widget, .comment-widget {
            margin-bottom: 30px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 15px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-form input,
        .comment-form input,
        .comment-form textarea {
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .web-links {
            background: #f8f9fa;
            padding: 40px 20px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .web-link a {
            font-weight: 600;
            color: var(--primary-blue);
            display: block;
            margin-bottom: 10px;
        }
        .web-link p {
            font-size: 0.9rem;
            color: var(--light-text);
        }
        footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 50px 20px 20px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #fff;
        }
        .footer-col ul li {
            margin-bottom: 12px;
        }
        .footer-col a {
            color: #bdc3c7;
        }
        .footer-col a:hover {
            color: var(--accent-orange);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            font-size: 0.9rem;
            color: #95a5a6;
        }
        @media (max-width: 992px) {
            .content {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                border-radius: 50px;
                margin-bottom: 10px;
            }
            .search-form button {
                border-radius: 50px;
                padding: 15px;
            }
        }
