.cta-banner-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #1a0b2e; /* Fallback si pas de fond Elementor */
    border-radius: 20px;
    padding: 40px;
    gap: 30px;
    overflow: hidden;
}

.cta-banner-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 300px;
}

.cta-banner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #e52b80;
    border-radius: 50%;
    color: #fff;
    font-size: 32px;
    flex-shrink: 0;
}

.cta-banner-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.cta-banner-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-banner-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.cta-banner-desc {
    color: #fff;
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

.cta-banner-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.cta-banner-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #e52b80;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-banner-button:hover {
    opacity: 0.9;
    color: #fff;
    transform: translateY(-2px);
}

.cta-banner-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.cta-banner-phone:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .cta-banner-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .cta-banner-left {
        flex-direction: column;
    }
    
    .cta-banner-right {
        align-items: center;
        width: 100%;
        margin-top: 10px;
    }
}