        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            text-decoration: none;
            color: #2c5aa0;
            transition: color 0.3s;
        }
        a:hover {
            color: #e74c3c;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(90deg, #1a237e, #283593);
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffeb3b;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .search-form {
            display: flex;
            flex: 0 1 400px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background: #ff9800;
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0 20px;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 1.1rem;
        }
        .search-form button:hover {
            background: #f57c00;
        }
        .main-nav {
            background: rgba(0, 0, 0, 0.2);
            padding: 10px 0;
        }
        .nav-list {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }
        .nav-list li {
            margin: 0 15px;
        }
        .nav-list a {
            color: #fff;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
            display: block;
        }
        .nav-list a:hover,
        .nav-list a.active {
            background: rgba(255, 255, 255, 0.15);
            color: #ffeb3b;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #e8eaf6;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #1a237e;
        }
        .breadcrumb span {
            color: #777;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        article {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }
        h1 {
            color: #1a237e;
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            border-bottom: 3px solid #ff9800;
            padding-bottom: 15px;
        }
        h2 {
            color: #283593;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #c5cae9;
        }
        h3 {
            color: #3949ab;
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: #444;
            background: #f0f4ff;
            padding: 20px;
            border-left: 5px solid #3949ab;
            border-radius: 0 10px 10px 0;
            margin-bottom: 30px;
        }
        .highlight {
            background: linear-gradient(120deg, #ffecb3 0%, #ffecb3 100%);
            padding: 20px;
            border-radius: 10px;
            border: 2px solid #ffb300;
            margin: 25px 0;
        }
        .highlight strong {
            color: #e65100;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 8px;
        }
        .hero-img {
            width: 100%;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 5px solid #fff;
            outline: 2px solid #ddd;
        }
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .card {
            background: #f9f9ff;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-top: 4px solid #5c6bc0;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.1);
        }
        .card h3 {
            color: #3949ab;
            margin-top: 0;
        }
        .interactive-section {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid #e0e0e0;
        }
        .interactive-section h2 {
            text-align: center;
            color: #d84315;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #555;
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            border-color: #5c6bc0;
            outline: none;
        }
        .btn {
            background: linear-gradient(90deg, #ff9800, #ff5722);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
        }
        .btn:hover {
            background: linear-gradient(90deg, #f57c00, #e64a19);
            transform: scale(1.03);
            box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
        }
        .rating {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 20px 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .footer-links {
            background: #1a237e;
            padding: 40px 0;
            margin-top: 40px;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 15px;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .web-link a {
            color: #bbdefb;
            font-size: 1rem;
            display: block;
            line-height: 1.5;
        }
        .web-link a:hover {
            color: #ffeb3b;
        }
        footer {
            background: #0d1440;
            color: #b0b0b0;
            text-align: center;
            padding: 25px 0;
            font-size: 0.95rem;
        }
        .copyright {
            margin-top: 10px;
            color: #9fa8da;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.8rem; }
            .header-top { flex-direction: column; gap: 20px; }
            .search-form { width: 100%; max-width: 500px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #283593;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 15px 0;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .nav-list.show { display: flex; }
            .nav-list li { margin: 5px 0; text-align: center; }
            .nav-list a { padding: 12px; }
            .content-grid { grid-template-columns: 1fr; }
            .footer-links .container { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 576px) {
            article { padding: 20px; }
            h1 { font-size: 2rem; }
            .footer-links .container { grid-template-columns: 1fr; }
            .btn { width: 100%; text-align: center; }
        }
