        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Noto Sans Devanagari', sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #e3f2fd;
            padding: 0;
            margin: 0;
        }
        a {
            text-decoration: none;
            color: #1a73e8;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0d47a1;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a73e8, #0d47a1);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        .logo a {
            color: inherit;
        }
        .nav-container {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        .main-nav {
            display: flex;
            gap: 25px;
            list-style: none;
        }
        .main-nav li a {
            color: white;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        .main-nav li a:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            padding: 10px 0;
            background: #bbdefb;
            margin-top: 10px;
            border-radius: 5px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
            padding-left: 20px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #1a73e8;
        }
        main {
            padding: 30px 0;
            background: white;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
            margin: 20px auto;
        }
        article {
            padding: 0 30px;
        }
        h1, h2, h3 {
            color: #1a73e8;
            margin-bottom: 20px;
            line-height: 1.4;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin-top: 20px;
            border-bottom: 3px solid #0d47a1;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 40px;
            border-left: 5px solid #0d47a1;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 30px;
            color: #1565c0;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.2rem;
        }
        .highlight {
            background: #e3f2fd;
            padding: 20px;
            border-left: 5px solid #1a73e8;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        b {
            color: #0d47a1;
            font-weight: 700;
        }
        .feature-img {
            margin: 30px auto;
            text-align: center;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            max-width: 800px;
        }
        .feature-img img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        .feature-img img:hover {
            transform: scale(1.03);
        }
        .functionalities {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
            padding: 30px;
            background: #f5f9ff;
            border-radius: 15px;
        }
        .function-box {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .function-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }
        .function-box h3 {
            margin-top: 0;
            color: #1a73e8;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .function-box form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .function-box input, .function-box textarea, .function-box select {
            padding: 12px;
            border: 2px solid #bbdefb;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.3s ease;
        }
        .function-box input:focus, .function-box textarea:focus, .function-box select:focus {
            border-color: #1a73e8;
            outline: none;
        }
        .function-box button {
            padding: 12px 20px;
            background: #1a73e8;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s ease;
        }
        .function-box button:hover {
            background: #0d47a1;
        }
        .stars {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 15px 0;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .stars label:hover,
        .stars input:checked ~ label {
            color: #ffc107;
        }
        .internal-links {
            background: #e3f2fd;
            padding: 30px;
            margin: 40px 0;
            border-radius: 15px;
        }
        .internal-links h2 {
            text-align: center;
            margin-bottom: 30px;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: white;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: scale(1.05);
        }
        .web-link a {
            font-size: 1.1rem;
            color: #1a73e8;
            font-weight: bold;
        }
        footer {
            background: #0d47a1;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #bbdefb;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #bbdefb;
        }
        .footer-links a:hover {
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #bbdefb;
            font-size: 0.9rem;
            color: #bbdefb;
        }
        @media (max-width: 992px) {
            .main-nav {
                gap: 15px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-container {
                width: 100%;
                justify-content: space-between;
                margin-top: 15px;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0d47a1;
                padding: 20px;
                border-radius: 10px;
                margin-top: 15px;
                gap: 15px;
            }
            #nav-toggle:checked ~ .main-nav {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .functionalities {
                grid-template-columns: 1fr;
                padding: 20px;
            }
            .links-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            article {
                padding: 0 20px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 2rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            p {
                font-size: 1rem;
            }
            .function-box {
                padding: 20px;
            }
        }
