.tc-container-d5d6f1ac {
    position: relative;
    padding: 20px 60px; /* Increased padding to make room for arrows */
    background-color: transparent;
}

@media (max-width: 767px) {
    .tc-container-d5d6f1ac {
        padding: 20px 40px;
    }
}

.tc-carousel-wrapper {
    overflow: hidden;
    padding: 20px 5px; /* for shadow */
}

.tc-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.tc-step {
    font-size: 14px;
    font-weight: 600;
    color: #b45309;
    margin-bottom: 16px;
}

.tc-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #f1f5f9;
    border-radius: 8px;
    color: #0f172a;
    font-size: 20px;
    margin-bottom: 24px;
}

.tc-icon-wrapper svg {
    width: 20px;
    height: 20px;
    fill: #0f172a;
}

.tc-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.tc-desc {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
    flex-grow: 1;
}

/* Nav arrows outside the hidden overflow area */
.tc-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
    color: #0f172a;
    transition: background 0.2s, color 0.2s;
}

.tc-nav-btn:hover {
    background: #0f172a;
    color: #ffffff;
}

.tc-swiper-button-prev {
    left: 5px;
}

.tc-swiper-button-next {
    right: 5px;
}

.swiper-slide.h-auto {
    height: auto;
}

/* Make sure swiper pagination dots have some space */
.swiper-pagination {
    position: relative !important;
    margin-top: 20px;
}
