        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(15, 32, 39, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, #00dbde, #fc00ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            transition: transform 0.3s;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            color: #e0f7fa;
            text-decoration: none;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 20px;
            transition: all 0.3s;
            position: relative;
        }
        .nav-desktop a:hover {
            background: #00adb5;
            color: #ffffff;
            transform: translateY(-3px);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: #00adb5;
            transition: all 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 80%;
            left: 10%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #00adb5;
            border-radius: 2px;
            transition: 0.3s;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(15, 32, 39, 0.98);
            padding: 20px;
            border-top: 1px solid #2c5364;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #e0f7fa;
            text-decoration: none;
            padding: 15px;
            border-bottom: 1px solid #2c5364;
            transition: background 0.3s;
        }
        .nav-mobile a:hover {
            background: #00adb5;
        }
        .breadcrumb {
            background: rgba(32, 58, 67, 0.8);
            padding: 12px 20px;
            border-radius: 8px;
            margin: 15px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #00adb5;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            background: rgba(255, 255, 255, 0.97);
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            margin: 30px auto;
            padding: 40px;
            position: relative;
            overflow: hidden;
        }
        main::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 173, 181, 0.05) 0%, transparent 70%);
            z-index: 0;
        }
        .content-wrapper {
            position: relative;
            z-index: 1;
        }
        h1 {
            color: #0f2027;
            font-size: 2.8rem;
            margin-bottom: 25px;
            line-height: 1.2;
            border-left: 6px solid #00adb5;
            padding-left: 20px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
        }
        h2 {
            color: #203a43;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #00adb5;
        }
        h3 {
            color: #2c5364;
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, #e0f7fa, #b2ebf2);
            padding: 25px;
            border-radius: 12px;
            border-left: 5px solid #00adb5;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0, 173, 181, 0.1);
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 8px;
        }
        .form-section {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
            border: 1px solid #dee2e6;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c5364;
        }
        input, select, textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ced4da;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, select:focus, textarea:focus {
            border-color: #00adb5;
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 173, 181, 0.2);
        }
        button {
            background: linear-gradient(90deg, #00adb5, #007bff);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0, 173, 181, 0.3);
        }
        .rating {
            display: flex;
            gap: 5px;
            margin: 15px 0;
        }
        .star {
            color: #ffc107;
            font-size: 1.5rem;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .star:hover {
            transform: scale(1.2);
        }
        .feature-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            margin: 30px auto;
            display: block;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.5s;
        }
        .feature-img:hover {
            transform: scale(1.02);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 40px 0;
            padding: 30px;
            background: rgba(15, 32, 39, 0.9);
            border-radius: 12px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(0, 173, 181, 0.3);
            transform: translateX(10px);
        }
        .web-link a {
            color: #e0f7fa;
            text-decoration: none;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .web-link a::before {
            content: '➤';
            color: #00adb5;
        }
        footer {
            background: #0f2027;
            color: #e0f7fa;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2c5364;
            font-size: 0.9rem;
            opacity: 0.8;
        }
        @media (max-width: 992px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            main {
                padding: 30px;
            }
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .header-top {
                padding: 12px 0;
            }
            h1 {
                font-size: 2rem;
                padding-left: 15px;
            }
            h2 {
                font-size: 1.6rem;
            }
            main {
                padding: 20px;
                margin: 15px auto;
            }
            .form-section {
                padding: 20px;
            }
            .web-links {
                grid-template-columns: 1fr;
                padding: 20px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            .highlight {
                padding: 20px;
            }
            button {
                width: 100%;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        main, .form-section, .highlight {
            animation: fadeIn 0.8s ease-out;
        }
