        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            font-size: 18px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #f43b47 0%, #453a94 100%);
            color: white;
            padding: 1.2rem 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 {
            color: white;
            text-decoration: none;
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo span {
            color: #FFD700;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 2rem;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #e9ecef;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #453a94;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .search-container {
            padding: 2rem 0;
            text-align: center;
            background-color: #fff;
            border-bottom: 1px solid #eee;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #453a94;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-form button {
            background: #453a94;
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #f43b47;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        h1 {
            color: #f43b47;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid #453a94;
            padding-left: 15px;
        }
        h2 {
            color: #453a94;
            font-size: 2.2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 8px;
            border-bottom: 3px solid #FFD700;
        }
        h3 {
            color: #333;
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fffacd;
            padding: 1.5rem;
            border-left: 5px solid #FFD700;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 8px;
        }
        .bold {
            font-weight: 800;
            color: #f43b47;
        }
        .article-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            transition: transform 0.5s;
        }
        .article-img:hover {
            transform: scale(1.02);
        }
        .interaction {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 12px;
            margin-top: 3rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
        }
        button[type="submit"] {
            background: linear-gradient(to right, #453a94, #f43b47);
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        button[type="submit"]:hover {
            opacity: 0.9;
            transform: translateY(-3px);
        }
        .stars {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            margin: 10px 0;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #FFD700;
        }
        .footer-links {
            background: #2d2d2d;
            color: #fff;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-link {
            display: inline-block;
            background: #3a3a3a;
            margin: 10px;
            padding: 12px 25px;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .web-link a {
            color: #FFD700;
            text-decoration: none;
            font-weight: 600;
        }
        .web-link:hover {
            background: #f43b47;
            transform: scale(1.05);
        }
        footer {
            background: #1a1a1a;
            color: #aaa;
            text-align: center;
            padding: 1.5rem;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.9rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                width: 100%;
                flex-direction: column;
                margin-top: 1rem;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                border-radius: 50px;
                margin-bottom: 10px;
            }
            .search-form button {
                border-radius: 50px;
                padding: 15px;
            }
        }
