:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-15fdbca */.apply-card {
    /* ... your existing styles (background, padding, etc.) ... */
    
    position: -webkit-sticky; /* Support for Safari */
    position: sticky;         /* Makes the form stick while scrolling */
    top: 20px;                /* Distance from the top of the screen when stuck */
    align-self: flex-start;   /* CRITICAL: Prevents the card from stretching to the full height of the left column */
    height: fit-content;      /* Ensures the sticky container only takes up as much space as the form needs */
}/* End custom CSS */