.tc-wrapper-e97c7e59 {
    position: relative;
    padding-bottom: 60px; /* space for timeline */
    overflow: hidden;
}

.tc-swiper-e97c7e59 {
    padding: 20px 0;
}

.swiper-wrapper {
    align-items: flex-end; /* Align cards to the bottom */
}

/* Card Styling */
.tc-card-e97c7e59 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tc-card-e97c7e59:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.tc-card-img-wrap-e97c7e59 {
    height: 200px;
    overflow: hidden;
}

.tc-card-img-e97c7e59 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tc-card-content-wrap-e97c7e59 {
    padding: 24px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tc-card-title-e97c7e59 {
    font-size: 20px;
    margin: 0 0 12px 0;
    color: #0b7a42;
}

.tc-card-desc-e97c7e59 {
    font-size: 15px;
    color: #444;
    margin: 0 0 30px 0;
    line-height: 1.5;
}

.tc-card-arrow-e97c7e59 {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #0b7a42;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid currentColor;
    border-radius: 50%;
}

/* Timeline elements */
.tc-timeline-line-e97c7e59 {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #c5d8c9;
    z-index: 1;
}

.tc-timeline-container-e97c7e59 {
    position: relative;
    height: 90px;
}

.tc-timeline-connector-e97c7e59 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 50px;
    background-color: #c5d8c9;
}

.tc-timeline-dot-e97c7e59 {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: #3e9c74;
    border-radius: 50%;
    z-index: 2;
}

.tc-timeline-dot-accent-e97c7e59 {
    position: absolute;
    left: -25%;
    top: 80%;
    width: 7px;
    height: 7px;
    background-color: #3e9c74;
    border-radius: 50%;
    z-index: 1;
}

/* Modal Styling */
.tc-modal-overlay-e97c7e59 {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.tc-modal-overlay-e97c7e59.active {
    opacity: 1;
    visibility: visible;
}

.tc-modal-box-e97c7e59 {
    background: #fff;
    width: 90%;
    max-width: 900px;
    height: 70vh;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.tc-modal-overlay-e97c7e59.active .tc-modal-box-e97c7e59 {
    transform: scale(1);
}

.tc-modal-left-e97c7e59 {
    width: 50%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
}

.tc-modal-right-e97c7e59 {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tc-modal-content-e97c7e59 img,
.tc-modal-content-e97c7e59 table,
.tc-modal-content-e97c7e59 iframe {
    max-width: 100%;
    height: auto;
}

.tc-modal-close-e97c7e59 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.tc-modal-close-e97c7e59:hover {
    background: rgba(0,0,0,0.2);
}

@media(max-width: 768px) {
    .tc-modal-box-e97c7e59 { flex-direction: column; height: 85vh; }
    .tc-modal-left-e97c7e59 { width: 100%; height: 250px; flex-shrink: 0; }
    .tc-modal-right-e97c7e59 { width: 100%; height: calc(100% - 250px); }
}