        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Arial', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #222;
            line-height: 1.8;
            font-size: 18px;
            overflow-x: hidden;
        }
        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, #ff5e00 0%, #ff2900 100%);
            color: white;
            padding: 1rem 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;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo a:hover {
            color: #ffec00;
            transition: color 0.3s;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        nav a:hover, nav a.active {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #ff5e00;
            width: 100%;
            padding: 1rem 0;
            position: absolute;
            top: 100%;
            left: 0;
            z-index: 999;
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background-color: #eee;
            padding: 1rem 2rem;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #ff5e00;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-container {
            margin: 2rem auto;
            max-width: 600px;
            padding: 0 20px;
        }
        .search-box {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-box button {
            background-color: #ff5e00;
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background-color: #e05500;
        }
        main {
            padding: 2rem 0;
        }
        article {
            background-color: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-bottom: 3rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #d84315;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            text-align: center;
        }
        h2 {
            font-size: 2.2rem;
            color: #ff5e00;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffec00;
        }
        h3 {
            font-size: 1.8rem;
            color: #ff8a00;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 1.5rem;
            border-left: 5px solid #ffd600;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 10px;
            vertical-align: middle;
        }
        .image-container {
            text-align: center;
            margin: 3rem 0;
        }
        .image-container img {
            border-radius: 15px;
            box-shadow: 0 15px 25px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
            max-width: 900px;
            margin: 0 auto;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        figcaption {
            font-style: italic;
            color: #666;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .user-interaction {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }
        .comment-box, .rating-box {
            background-color: #f5f5f5;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        }
        .comment-box h3, .rating-box h3 {
            margin-top: 0;
        }
        textarea, select, input[type="text"], input[type="number"] {
            width: 100%;
            padding: 1rem;
            margin: 0.8rem 0;
            border: 1px solid #ccc;
            border-radius: 10px;
            font-size: 1rem;
            resize: vertical;
        }
        button.submit-btn {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 10px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: background 0.3s;
            width: 100%;
        }
        button.submit-btn:hover {
            background-color: #388E3C;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2.5rem;
            color: #ffd700;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
            transition: transform 0.2s;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem;
            background-color: #2c3e50;
            border-radius: 15px;
        }
        .web-link {
            background-color: #34495e;
            padding: 1.2rem;
            border-radius: 10px;
            text-align: center;
        }
        .web-link a {
            color: #ecf0f1;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            display: block;
        }
        .web-link a:hover {
            color: #ffa726;
            text-decoration: underline;
        }
        footer {
            background-color: #222;
            color: #ddd;
            padding: 3rem 0 1.5rem;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            width: 100%;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            article { padding: 2rem; }
            nav ul { display: none; }
            .hamburger { display: block; }
            .header-container { padding: 0 15px; }
            .user-interaction {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 576px) {
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
            .container { padding: 0 15px; }
            .search-box input { padding: 0.8rem 1.2rem; }
            .search-box button { padding: 0 1.5rem; }
        }
        @media print {
            header, nav, .search-container, .user-interaction, .web-links, footer {
                display: none;
            }
            body { font-size: 12pt; background: white; }
            article { box-shadow: none; }
        }
