 /* Custom CSS to ensure Inter font is used and buttons have a smooth transition */
        body {
            font-family: 'Inter', sans-serif;
        }
        /* Apply the very light, subtle blue gradient to the body */
        .vyoma-bg {
            background-image: linear-gradient(to bottom right, #eff6ff 0%, #ffffff 100%); /* Tailwind blue-100 to white */
        }
        .link-button {
            transition: all 0.2s ease-in-out;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
        }
        .link-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
        }