/* Sticky CTA Button for Mobile */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background-color: #f1c40f;
    color: #000;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-size: 1.2em;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    text-decoration: none;
    text-transform: uppercase;
}

@media (max-width: 979px) {
    .sticky-cta {
        display: block;
    }
}
