        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-color: #d4af37; 
            --secondary-color: #1a5276; 
            --accent-color: #922b21; 
            --light-bg: #f8f9fa;
            --dark-text: #2c3e50;
            --light-text: #5d6d7e;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #fefefe;
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #154360 100%);
            color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--primary-color);
        }
        .logo-text {
            background: linear-gradient(to right, #f1c40f, #d4af37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            color: #e8f4fc;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 5px;
            transition: var(--transition);
            border-bottom: 2px solid transparent;
        }
        nav a:hover, nav a.active {
            color: var(--primary-color);
            border-bottom-color: var(--primary-color);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            background-color: #eef2f7;
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 25px;
        }
        .breadcrumb a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-box {
            background-color: white;
            border-radius: 50px;
            padding: 5px 20px;
            display: flex;
            align-items: center;
            box-shadow: var(--shadow);
            max-width: 500px;
            margin: 30px auto 40px;
        }
        .search-box input {
            flex-grow: 1;
            border: none;
            outline: none;
            padding: 12px 10px;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: var(--primary-color);
            transform: scale(1.05);
        }
        main {
            padding: 20px 0 40px;
        }
        article {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }
        h1 {
            color: var(--secondary-color);
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.3;
            text-align: center;
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 15px;
        }
        h2 {
            color: var(--accent-color);
            font-size: 1.8rem;
            margin: 35px 0 20px;
            padding-left: 15px;
            border-left: 5px solid var(--primary-color);
        }
        h3 {
            color: var(--secondary-color);
            font-size: 1.4rem;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
            color: #444;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--secondary-color);
            font-weight: 600;
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid var(--primary-color);
            margin-bottom: 30px;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 25px;
            border-radius: 8px;
            border: 1px dashed var(--primary-color);
            margin: 25px 0;
        }
        .highlight strong {
            color: var(--accent-color);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 25px auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border: 3px solid #eee;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--secondary-color);
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        }
        .card h3 {
            color: var(--secondary-color);
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .card h3 i {
            color: var(--primary-color);
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.1);
        }
        button, .btn {
            background: linear-gradient(to right, var(--secondary-color), #1a5276);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            text-decoration: none;
            display: inline-block;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, var(--primary-color), #f1c40f);
            transform: translateY(-2px);
        }
        .rating {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars .active {
            color: #f39c12;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 40px 0;
        }
        .web-link {
            background: #f1f8ff;
            border-radius: 6px;
            padding: 15px;
            border-left: 4px solid var(--primary-color);
        }
        .web-link a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }
        footer {
            background: linear-gradient(to bottom, #2c3e50, #1a252f);
            color: #ecf0f1;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(212, 175, 55, 0.3);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            color: #95a5a6;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.6rem; }
            .header-container { padding: 12px 0; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav ul {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: var(--secondary-color);
                width: 100%;
                text-align: center;
                padding: 20px 0;
                transition: var(--transition);
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                z-index: 999;
            }
            nav ul.active {
                left: 0;
            }
            nav li {
                margin: 15px 0;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 { font-size: 1.8rem; }
            .container { padding: 0 15px; }
            article { padding: 20px; }
            .card { padding: 20px; }
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        @media print {
            header, footer, .interactive-section, .web-links, .search-box {
                display: none;
            }
            body { color: #000; }
            article { box-shadow: none; }
        }
