/* Sticky Case Studies button for Learn More page */
.sticky-casestudies-btn {
    position: sticky;
    top: 4rem; /* Adjust as needed for header spacing */
    z-index: 1050; /* Above content, below modals */
}
@media (max-width: 768px) {
    .sticky-casestudies-btn {
        top: 0.5rem;
    }
}
