.cta-banner-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: #3f1e6f;
    border-radius: 8px;
    padding: 40px 60px;
    color: #ffffff;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.cta-banner-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.cta-banner-content {
    flex: 1 1 500px;
    z-index: 2;
}

.cta-banner-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    font-weight: 500;
}

.cta-banner-square {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #f7cd25;
    margin-right: 12px;
}

.cta-banner-title {
    font-size: 38px;
    font-weight: 500;
    margin: 0 0 15px 0;
    color: #ffffff;
    line-height: 1.2;
}

.cta-banner-description {
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
}

.cta-banner-action {
    z-index: 2;
}

.cta-banner-button {
    display: inline-block;
    background-color: #ffffff;
    color: #333333;
    padding: 15px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-banner-button:hover {
    background-color: #f1f1f1;
    color: #333333;
}

@media (max-width: 768px) {
    .cta-banner-container {
        padding: 30px 20px;
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }
}