.tc-cec71d3f-container {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 40px;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-cec71d3f-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.tc-cec71d3f-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.tc-cec71d3f-slides {
    position: relative;
    min-height: 180px;
}

.tc-cec71d3f-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: translateX(30px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tc-cec71d3f-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.tc-cec71d3f-review {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ffffff;
    font-style: italic;
}

.tc-cec71d3f-name {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 0 5px 0;
    color: #ffffff;
}

.tc-cec71d3f-job {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Arrows */
.tc-cec71d3f-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 10px;
    z-index: 3;
    transition: opacity 0.3s ease;
    opacity: 0.7;
}

.tc-cec71d3f-arrow:hover {
    opacity: 1;
}

.tc-cec71d3f-arrow.prev {
    left: -50px;
}

.tc-cec71d3f-arrow.next {
    right: -50px;
}

/* Dots */
.tc-cec71d3f-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.tc-cec71d3f-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tc-cec71d3f-dot.active {
    background-color: #ffffff;
}

@media (max-width: 768px) {
    .tc-cec71d3f-arrow {
        display: none; /* Hide arrows on touch devices to favor dots/swipes */
    }
    .tc-cec71d3f-container {
        padding: 40px 20px;
        /* Some mobile browsers struggle with fixed attachment, keep standard fallback if supported */
        background-attachment: scroll; 
    }
}
