* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.6;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a {
            text-decoration: none;
            color: #d32f2f;
            transition: color 0.3s;
        }
        a:hover {
            color: #9a0007;
            text-decoration: underline;
        }
        header {
            background: linear-gradient(135deg, #1a237e 0%, #311b92 100%);
            color: white;
            padding: 1.2rem 0;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            margin-bottom: 1.5rem;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffcc00;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .logo span {
            color: #4fc3f7;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-links a {
            color: white;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0.8rem;
            border-radius: 6px;
            transition: background 0.3s;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.15);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: #ede7f6;
            padding: 0.8rem 1.2rem;
            border-radius: 8px;
            margin: 1rem 0 2rem;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #5e35b1;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #7e57c2;
        }
        .search-container {
            background-color: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
            margin-bottom: 2.5rem;
            text-align: center;
        }
        .search-container h2 {
            color: #1a237e;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        .search-box {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #5e35b1;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background-color: #5e35b1;
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background-color: #4527a0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        main {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.06);
        }
        article h1 {
            color: #1a237e;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-bottom: 3px solid #ffcc00;
            padding-bottom: 0.7rem;
        }
        article h2 {
            color: #311b92;
            font-size: 1.9rem;
            margin: 2.2rem 0 1rem;
            padding-left: 0.8rem;
            border-left: 5px solid #d32f2f;
        }
        article h3 {
            color: #5e35b1;
            font-size: 1.5rem;
            margin: 1.8rem 0 0.8rem;
        }
        article p {
            margin-bottom: 1.4rem;
            text-align: justify;
            font-size: 1.1rem;
            color: #444;
        }
        article strong {
            color: #d32f2f;
            font-weight: 700;
        }
        article em {
            background-color: #fff9c4;
            padding: 0 4px;
            font-style: normal;
            border-radius: 3px;
        }
        .highlight-box {
            background: linear-gradient(to right, #e3f2fd, #f3e5f5);
            border-left: 6px solid #5e35b1;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            text-align: center;
            margin: 2.5rem 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 3px solid #ffcc00;
        }
        aside {
            background-color: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.06);
            align-self: start;
        }
        aside h3 {
            color: #1a237e;
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffcc00;
        }
        .sidebar-list {
            list-style: none;
            margin-bottom: 2rem;
        }
        .sidebar-list li {
            margin-bottom: 0.9rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .sidebar-list li:before {
            content: "•";
            color: #d32f2f;
            font-size: 1.5rem;
            position: absolute;
            left: 0;
            top: -5px;
        }
        .rating-section, .comment-section {
            background-color: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
            margin-top: 2.5rem;
        }
        .rating-section h2, .comment-section h2 {
            color: #1a237e;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .star {
            font-size: 2.2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 0.9rem;
            border: 1px solid #bbb;
            border-radius: 8px;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-form button, .comment-form button {
            background-color: #388e3c;
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover {
            background-color: #2e7d32;
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 3rem 0 2rem;
        }
        .web-link {
            background-color: #e8eaf6;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background-color: #d1d9ff;
            transform: translateY(-3px);
        }
        footer {
            background-color: #1a237e;
            color: white;
            padding: 2.5rem 0 1.5rem;
            border-radius: 12px 12px 0 0;
            margin-top: 3rem;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .footer-links a {
            color: #bbdefb;
        }
        .copyright {
            border-top: 1px solid #3949ab;
            padding-top: 1.5rem;
            font-size: 0.95rem;
            color: #c5cae9;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .nav-links {
                gap: 1rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                width: 100%;
                margin-top: 1rem;
                justify-content: space-between;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #311b92;
                padding: 1rem;
                border-radius: 8px;
                margin-top: 1rem;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            article h1 {
                font-size: 2rem;
            }
            article h2 {
                font-size: 1.7rem;
            }
            main, aside {
                padding: 1.5rem;
            }
        }
