* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.7;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            padding-top: 80px;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e5799 0%, #207cca 100%);
            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 a {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #ffcc00;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo span {
            color: white;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            transition: color 0.3s;
            padding: 8px 0;
            position: relative;
        }
        .nav-links a:hover {
            color: #ffcc00;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #ffcc00;
            transition: width 0.3s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: #e9ecef;
            color: #555;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #1e5799;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .search-box {
            padding: 40px 0 20px;
            text-align: center;
        }
        .search-box h2 {
            margin-bottom: 20px;
            color: #1e5799;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-button {
            background: linear-gradient(to right, #ffcc00, #ff9900);
            color: white;
            border: none;
            padding: 0 30px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-button:hover {
            background: linear-gradient(to right, #ff9900, #ff6600);
        }
        main {
            padding: 30px 0;
        }
        article {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 2.8rem;
            color: #1e5799;
            margin-bottom: 25px;
            line-height: 1.3;
        }
        h2 {
            font-size: 2.2rem;
            color: #207cca;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffcc00;
        }
        h3 {
            font-size: 1.8rem;
            color: #333;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 5px solid #ffcc00;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.4em;
            margin-right: 8px;
        }
        .tip-box {
            background: #e6f7ff;
            border: 2px dashed #1e5799;
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
        }
        .tip-box h4 {
            color: #1e5799;
            margin-bottom: 10px;
            font-size: 1.4rem;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border: 5px solid #fff;
        }
        .caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 1rem;
        }
        .interactive-section {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-bottom: 40px;
        }
        .rating-box, .comment-box {
            margin-bottom: 40px;
        }
        .rating-box h3, .comment-box h3 {
            color: #1e5799;
            margin-bottom: 20px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        .star {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active, .star:hover {
            color: #ffcc00;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            font-weight: 600;
            margin-bottom: 8px;
            color: #555;
        }
        input, textarea {
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1.1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus {
            border-color: #1e5799;
            outline: none;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, #1e5799, #207cca);
            color: white;
            border: none;
            padding: 18px 30px;
            font-size: 1.2rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            align-self: flex-start;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #207cca, #1e5799);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0;
        }
        .web-link {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
        }
        .web-link a {
            color: #1e5799;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: #1a1a1a;
            color: #ccc;
            padding: 50px 0 20px;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #ffcc00;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            font-size: 0.95rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1e5799;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                padding: 12px 20px;
            }
            .search-form {
                flex-direction: column;
                border-radius: 15px;
            }
            .search-input, .search-button {
                width: 100%;
                border-radius: 0;
                padding: 18px;
            }
            article, .interactive-section {
                padding: 25px;
            }
        }
        @media (max-width: 576px) {
            body { padding-top: 70px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            p { font-size: 1.1rem; }
            .logo a { font-size: 1.8rem; }
        }
