.alva-sticky-cta-wrapper {
    display: none;
}
@media screen and (max-width: 767px) {
    .alva-sticky-cta-wrapper.is-visible {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        background: #020497;
        padding: 16px;
        box-shadow: 0 -4px 10px rgba(0,0,0,0.15);
        animation: slideUp 0.3s ease-out forwards;
    }
    .alva-sticky-cta-wrapper a {
        display: block;
        width: 100%;
        text-align: center;
        background: #F5E961;
        color: #002D72;
        padding: 16px 24px;
        font-family: 'Seiva', sans-serif;
        font-weight: 800;
        font-size: 16px;
        border-radius: 8px;
        text-decoration: none;
    }
}
@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}