.brice-cta {
    padding: 4rem 0;
    background-color: #1976D2;
    background-color: var(--background-color, #1976D2);
    margin: 0 calc(50% - 50vw);
    width: 100vw;
}

.brice-cta::before,
.brice-cta::after {
    content: '';
    display: table;
    clear: both;
}

.brice-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.brice-cta-text {
    flex: 1;
    text-align: left;
}

.brice-cta h2 {
    font-size: 3rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
    color: var(--title-color, #FFFFFF);
}

.brice-cta p {
    font-size: 2rem;
    margin: 0;
    line-height: 1.3;
    color: #FFFFFF;
    color: var(--text-color, #FFFFFF);
}

.brice-cta-button-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.brice-cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.5rem;
    min-width: 180px;
    text-align: center;
    background-color: #FFFFFF;
    background-color: var(--button-color, #FFFFFF);
    color: #1976D2;
    color: var(--button-text-color, #1976D2);
    transition: all 0.3s ease;
}

.brice-cta-button:hover {
    text-decoration: none !important;
}

.brice-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
    .brice-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .brice-cta-text {
        text-align: center;
    }

    .brice-cta h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .brice-cta p {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .brice-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 180px;
    }
}
