/* Floating CTA base */
.floating-cta-button {
    position: fixed;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease-in-out;
}

/* CTA positions */
.floating-cta-bottom_right {
    bottom: 30px;
    right: 30px;
}

.floating-cta-bottom_left {
    bottom: 30px;
    left: 30px;
}

.floating-cta-bottom_center {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}
