        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Arial', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            color: #2c3e50;
            line-height: 1.7;
            font-size: 1.05rem;
            padding-bottom: 40px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #1a237e;
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffd700;
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        .logo span {
            color: #4fc3f7;
        }
        nav.desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav.desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 16px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        nav.desktop-nav a:hover {
            background: #3949ab;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: #283593;
            padding: 20px;
            border-top: 1px solid #3949ab;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            display: block;
            padding: 10px;
            border-radius: 5px;
        }
        .mobile-nav a:hover {
            background: #3949ab;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #e3f2fd;
            border-bottom: 1px solid #bbdefb;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #1565c0;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero {
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(26, 35, 126, 0.9)), url('https://images.unsplash.com/photo-1610890716171-6b1bb98ffd09?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            padding: 60px 20px;
            text-align: center;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto 0;
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 16px 20px;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-box button {
            background: #ff9800;
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #f57c00;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 40px;
        }
        article {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            line-height: 1.8;
        }
        article h2 {
            color: #1a237e;
            font-size: 2.2rem;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffd700;
        }
        article h3 {
            color: #3949ab;
            font-size: 1.7rem;
            margin: 30px 0 15px;
        }
        article p {
            margin-bottom: 22px;
            text-align: justify;
        }
        article strong {
            color: #d32f2f;
            font-weight: 700;
        }
        article em {
            background: #fff9c4;
            padding: 2px 6px;
            border-radius: 4px;
        }
        .highlight {
            background: linear-gradient(90deg, #e1f5fe, #f3e5f5);
            padding: 25px;
            border-left: 5px solid #7b1fa2;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .img-container {
            text-align: center;
            margin: 40px 0;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.5s ease;
        }
        .img-container img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        aside {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .sidebar-widget h3 {
            color: #1a237e;
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 8px;
            border-bottom: 2px solid #ffd700;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffc107;
            margin: 15px 0;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover {
            color: #ff9800;
        }
        .rating-form input, .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
        }
        .rating-form button, .comment-form button {
            width: 100%;
            background: #4caf50;
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover {
            background: #388e3c;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 60px 0 40px;
            padding: 40px;
            background: #1a237e;
            border-radius: 15px;
            color: white;
        }
        .footer-links h3 {
            grid-column: 1 / -1;
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: #ffd700;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 18px;
            border-radius: 10px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #bbdefb;
            text-decoration: none;
            font-weight: 600;
            display: block;
            text-align: center;
        }
        .web-link a:hover {
            color: white;
        }
        footer {
            text-align: center;
            padding: 30px;
            background: #0d153a;
            color: #b0bec5;
            border-radius: 15px;
            margin-top: 40px;
        }
        .copyright {
            font-size: 0.95rem;
            margin-top: 20px;
            border-top: 1px solid #37474f;
            padding-top: 20px;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
            }
            .footer-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav.desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
                padding: 30px 20px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            article {
                padding: 25px;
            }
            .footer-links {
                grid-template-columns: 1fr;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box input, .search-box button {
                border-radius: 50px;
                margin: 5px 0;
            }
        }
