:root {
            --primary-color: #1a73e8;
            --secondary-color: #0d47a1;
            --accent-color: #00bcd4;
            --text-dark: #202124;
            --text-light: #5f6368;
            --bg-light: #f8f9fa;
            --bg-white: #ffffff;
            --border-color: #dadce0;
            --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
        }
        body {
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-light);
        }
        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--bg-white);
            box-shadow: var(--shadow);
            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: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent-color);
        }
        .search-form {
            display: flex;
            flex-grow: 1;
            max-width: 500px;
            margin: 0 30px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 10px 15px;
            border: 1px solid var(--border-color);
            border-radius: 24px 0 0 24px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 0 24px 24px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--secondary-color);
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-dark);
        }
        nav ul {
            display: flex;
            list-style: none;
            background-color: var(--secondary-color);
            border-radius: 8px;
            overflow: hidden;
        }
        nav li {
            flex: 1;
        }
        nav a {
            display: block;
            padding: 15px 20px;
            color: white;
            text-align: center;
            font-weight: 500;
        }
        nav a:hover {
            background-color: var(--primary-color);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            margin: 30px 0;
        }
        article {
            background-color: var(--bg-white);
            padding: 30px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        article h1 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
            line-height: 1.3;
        }
        article h2 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: var(--primary-color);
            padding-bottom: 8px;
            border-bottom: 2px solid var(--accent-color);
        }
        article h3 {
            font-size: 1.4rem;
            margin: 25px 0 10px;
            color: var(--secondary-color);
        }
        article p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        article strong {
            color: var(--secondary-color);
            font-weight: 700;
        }
        article em {
            background-color: #fff9c4;
            font-style: italic;
            padding: 2px 5px;
        }
        .highlight-box {
            background-color: #e3f2fd;
            border-left: 5px solid var(--primary-color);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .image-container figcaption {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-top: 10px;
            font-style: italic;
        }
        .rating-section, .comments-section {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
        }
        .rating-form, .comment-form {
            background-color: var(--bg-light);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
        }
        .rating-form h3, .comment-form h3 {
            margin-top: 0;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 15px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            color: #ffc107;
        }
        .form-group {
            margin-bottom: 15px;
        }
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        button[type="submit"] {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        button[type="submit"]:hover {
            background-color: var(--secondary-color);
        }
        aside {
            background-color: var(--bg-white);
            padding: 20px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        aside h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
            padding-bottom: 8px;
            border-bottom: 1px solid var(--border-color);
        }
        .aside-list {
            list-style: none;
        }
        .aside-list li {
            margin-bottom: 12px;
        }
        .aside-list a {
            display: block;
            padding: 10px 15px;
            background-color: var(--bg-light);
            border-radius: 8px;
            transition: var(--transition);
        }
        .aside-list a:hover {
            background-color: #e8f0fe;
            transform: translateX(5px);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 40px 0 30px;
        }
        .web-link {
            background-color: var(--bg-white);
            padding: 15px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
        }
        .web-link a {
            font-weight: 600;
            color: var(--text-dark);
        }
        .web-link a:hover {
            color: var(--primary-color);
        }
        footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 30px 0 20px;
            margin-top: 40px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .copyright {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        .social-links {
            display: flex;
            gap: 15px;
        }
        .social-links a {
            color: white;
            font-size: 1.3rem;
            transition: var(--transition);
        }
        .social-links a:hover {
            color: var(--accent-color);
            transform: translateY(-3px);
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                max-width: 100%;
                margin: 15px 0 0;
            }
            .mobile-toggle {
                display: block;
            }
            nav ul {
                flex-direction: column;
                display: none;
                margin-top: 15px;
            }
            nav.active ul {
                display: flex;
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }
