        * {
            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: #0f1a2c;
            color: #e6eaf0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #29b6f6;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a2b4c 0%, #0f1a2c 100%);
            padding: 15px 0;
            border-bottom: 2px solid #2a3d6e;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: #4fc3f7;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .logo span {
            color: #ffcc00;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: rgba(79, 195, 247, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4fc3f7;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #a0b3d1;
        }
        .breadcrumb a {
            color: #a0b3d1;
        }
        .breadcrumb a:hover {
            color: #4fc3f7;
        }
        .search-section {
            background-color: #152340;
            padding: 25px 0;
            margin: 20px 0;
            border-radius: 10px;
            text-align: center;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #2a3d6e;
            border-radius: 50px 0 0 50px;
            background-color: #1e2f50;
            color: #fff;
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
            border-color: #4fc3f7;
        }
        .search-button {
            padding: 0 30px;
            background: linear-gradient(to right, #4fc3f7, #2979ff);
            border: none;
            border-radius: 0 50px 50px 0;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-button:hover {
            background: linear-gradient(to right, #29b6f6, #1c68e3);
        }
        main {
            padding: 30px 0;
        }
        article {
            background-color: #1a2b4c;
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h1 {
            font-size: 2.8rem;
            color: #ffcc00;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 1px 1px 3px #000;
        }
        h2 {
            font-size: 2.2rem;
            color: #4fc3f7;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a3d6e;
        }
        h3 {
            font-size: 1.7rem;
            color: #a0b3d1;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.1);
            border-left: 5px solid #ffcc00;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .image-container img {
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            border: 3px solid #2a3d6e;
        }
        .image-caption {
            font-style: italic;
            color: #a0b3d1;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .interactive-section {
            background-color: #152340;
            border-radius: 10px;
            padding: 30px;
            margin: 40px 0;
        }
        .interactive-section h3 {
            color: #4fc3f7;
            margin-top: 0;
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 20px;
            margin-top: 20px;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #555;
            cursor: pointer;
        }
        .stars .star {
            transition: color 0.2s, transform 0.2s;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffcc00;
            transform: scale(1.2);
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
            color: #a0b3d1;
        }
        .form-group input,
        .form-group textarea {
            padding: 15px;
            border: 2px solid #2a3d6e;
            border-radius: 8px;
            background-color: #1e2f50;
            color: #fff;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            padding: 15px 30px;
            background: linear-gradient(to right, #4fc3f7, #2979ff);
            border: none;
            border-radius: 8px;
            color: white;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: start;
        }
        .submit-button:hover {
            background: linear-gradient(to right, #29b6f6, #1c68e3);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0,0,0,0.2);
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 40px 0;
        }
        .web-link {
            background-color: #1a2b4c;
            padding: 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
            border-left: 4px solid #4fc3f7;
        }
        .web-link:hover {
            background-color: #22345e;
            transform: translateX(5px);
        }
        .web-link a {
            font-weight: 600;
            display: block;
        }
        footer {
            background-color: #0f1a2c;
            border-top: 2px solid #2a3d6e;
            padding: 40px 0 20px;
            text-align: center;
        }
        .copyright {
            color: #a0b3d1;
            font-size: 0.9rem;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #2a3d6e;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.5rem; }
            article { padding: 30px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background-color: #1a2b4c;
                width: 100%;
                text-align: center;
                transition: 0.5s;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
                padding: 20px 0;
                border-top: 2px solid #2a3d6e;
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links li {
                margin: 15px 0;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 50px;
                margin-bottom: 10px;
            }
            .search-button {
                border-radius: 50px;
                padding: 15px;
            }
            .longtail-links {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 576px) {
            .container { padding: 0 15px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            article { padding: 20px; }
            .interactive-section { padding: 20px; }
        }
