.tapa-text-cta-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    color: #fff;
    z-index: 999999;
    padding: 15px 20px;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
    border-top: 4px solid #cc0000;
    font-family: sans-serif;
}

.tapa-text-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.tapa-text-cta-icon {
    font-size: 30px;
}

.tapa-text-cta-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.4;
}

.tapa-text-cta-text strong {
    font-size: 18px;
    color: #fff;
}

.tapa-text-cta-text span {
    color: #ffcc00;
    font-weight: bold;
}

.tapa-text-cta-button {
    background: #cc0000;
    color: #fff;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.tapa-text-cta-button:hover {
    background: #ff0000;
    color: #fff;
}

@media (max-width: 768px) {
    .tapa-text-cta-content {
        flex-direction: column;
        text-align: center;
    }
    .tapa-text-cta-text {
        font-size: 14px;
    }
}