        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.8;
            font-size: 1.1rem;
            padding-top: 80px;
        }
        a {
            text-decoration: none;
            color: #d35400;
            transition: color 0.3s;
        }
        a:hover {
            color: #a52714;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #2c3e50, #1a1a2e);
            color: white;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f39c12;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .logo a {
            color: inherit;
        }
        .logo span {
            color: #e74c3c;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            color: #ecf0f1;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: #f39c12;
            color: #2c3e50;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #f39c12;
        }
        .breadcrumb {
            padding: 12px 20px;
            background-color: #34495e;
            color: #bdc3c7;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #f1c40f;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-box {
            background: #fff;
            padding: 30px;
            border-radius: 10px;
            margin: 25px auto;
            max-width: 800px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            text-align: center;
        }
        .search-box h2 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        .search-box form {
            display: flex;
            gap: 10px;
        }
        .search-box input {
            flex: 1;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1.1rem;
        }
        .search-box button {
            background: #e67e22;
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #d35400;
        }
        main {
            padding: 30px 0;
            background-color: white;
            border-radius: 15px;
            margin: 20px auto;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            overflow: hidden;
        }
        article {
            padding: 0 30px 30px;
        }
        h1 {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 25px;
            line-height: 1.3;
            border-bottom: 3px solid #f39c12;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            color: #e67e22;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #f1c40f;
        }
        h3 {
            font-size: 1.7rem;
            color: #16a085;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
            font-size: 1.15rem;
            color: #444;
        }
        .highlight {
            background-color: #fffde7;
            padding: 25px;
            border-left: 5px solid #f1c40f;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.4rem;
            margin-right: 8px;
        }
        .term {
            font-weight: bold;
            color: #c0392b;
        }
        .quote {
            font-style: italic;
            background: #f9f9f9;
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
            border-left: 5px solid #3498db;
            color: #555;
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        .image-container figcaption {
            font-style: italic;
            color: #7f8c8d;
            margin-top: 10px;
            font-size: 1rem;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .comment-box, .rating-box {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #ddd;
        }
        .comment-box h3, .rating-box h3 {
            color: #2c3e50;
            margin-top: 0;
        }
        textarea, select, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 12px;
            margin: 10px 0 20px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            color: #f1c40f;
            margin: 15px 0;
        }
        .stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .btn-submit {
            background: #27ae60;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            display: block;
            width: 100%;
            transition: background 0.3s;
        }
        .btn-submit:hover {
            background: #219653;
        }
        .footer-links {
            background: #2c3e50;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: #34495e;
            padding: 18px;
            border-radius: 8px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: #3d566e;
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ecf0f1;
            font-size: 1.1rem;
            display: block;
            line-height: 1.6;
        }
        .web-link a:hover {
            color: #f39c12;
        }
        footer {
            background: #1a1a2e;
            color: #bdc3c7;
            text-align: center;
            padding: 25px 20px;
            font-size: 1rem;
        }
        footer p {
            margin-bottom: 10px;
            color: inherit;
            text-align: center;
        }
        .copyright {
            font-size: 0.95rem;
            color: #95a5a6;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            .header-container { flex-wrap: wrap; }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2c3e50;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-top: 2px solid #f39c12;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .hamburger {
                display: block;
            }
            .search-box form {
                flex-direction: column;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            body { padding-top: 70px; font-size: 1rem; }
            .logo { font-size: 1.8rem; }
            article { padding: 0 20px 20px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.5rem; }
            .footer-links .container {
                grid-template-columns: 1fr;
            }
        }
