        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.7;
            font-size: 18px;
        }
        a {
            text-decoration: none;
            color: #2c3e50;
            transition: color 0.3s ease;
        }
        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(135deg, #2c3e50, #34495e);
            color: white;
            padding: 15px 0;
            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;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a i {
            color: #e74c3c;
        }
        .logo a:hover {
            color: #f1c40f;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav ul li a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        nav ul li a:hover {
            background: rgba(255,255,255,0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #ecf0f1;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #7f8c8d;
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content-area {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .sidebar {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1 {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 25px;
            line-height: 1.2;
            border-left: 8px solid #e74c3c;
            padding-left: 20px;
        }
        h2 {
            font-size: 2rem;
            color: #34495e;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #f1c40f;
        }
        h3 {
            font-size: 1.6rem;
            color: #2c3e50;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: #fff9e6;
            padding: 25px;
            border-left: 5px solid #f1c40f;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 8px;
        }
        .featured-image {
            margin: 40px 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .featured-image figcaption {
            margin-top: 15px;
            font-style: italic;
            color: #7f8c8d;
            font-size: 0.95rem;
        }
        .search-box {
            background: #2c3e50;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 40px;
        }
        .search-box h3 {
            color: white;
            margin-top: 0;
            border-bottom: none;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 8px 0 0 8px;
            font-size: 1.1rem;
        }
        .search-form button {
            background: #e74c3c;
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #c0392b;
        }
        .comment-rating-section {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px dashed #bdc3c7;
        }
        .comment-form, .rating-form {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 40px;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #2c3e50;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 15px;
            border: 1px solid #bdc3c7;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            border-color: #3498db;
            outline: none;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #f1c40f;
            margin-bottom: 20px;
        }
        .stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .submit-btn {
            background: #27ae60;
            color: white;
            border: none;
            padding: 18px 35px;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .submit-btn:hover {
            background: #219653;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 50px 0;
        }
        .web-link {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .web-link a {
            font-weight: 600;
            color: #2c3e50;
            display: block;
        }
        footer {
            background: #2c3e50;
            color: white;
            padding: 50px 0 30px;
        }
        .footer-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #f1c40f;
            margin-bottom: 25px;
            font-size: 1.5rem;
            border-bottom: 2px solid #34495e;
            padding-bottom: 10px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #bdc3c7;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #f1c40f;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid #34495e;
            color: #95a5a6;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2c3e50;
                padding: 20px;
                border-radius: 10px;
                margin-top: 20px;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-area {
                padding: 25px;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input, .search-form button {
                width: 100%;
                border-radius: 8px;
                margin-bottom: 10px;
            }
        }
        @media (max-width: 576px) {
            .web-links {
                grid-template-columns: 1fr;
            }
            .footer-container {
                flex-direction: column;
            }
        }
