.tsc-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 40px auto;
    padding: 20px 0;
    font-family: 'Helvetica Neue', '微軟正黑體', 'Microsoft JhengHei', sans-serif;
    overflow: hidden;
}

.tsc-title-area {
    text-align: center;
    margin-bottom: 30px;
}

.tsc-title-area h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

.tsc-title-area h3 {
    font-size: 32px;
    font-weight: bold;
    margin: 5px 0 0 0;
    color: #333;
}

.tsc-swiper-container {
    width: 100%;
    padding: 50px 0;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 65%;
    max-width: 1200px;
    opacity: 0.4;
    transform: scale(0.8);
    transition: transform 0.4s ease, opacity 0.4s ease;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.tsc-slide-inner {
    display: flex;
    align-items: center;
    padding: 30px 40px 0px;
}

.tsc-slide-content {
    flex: 1.2;
    padding-right: 30px;
    color: #333;
}

.tsc-slide-image {
    flex: 1;
}

.tsc-slide-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.tsc-subtitle {
    color: #8e2121;
    font-size: 30px;
    font-weight: bold;
}

.tsc-maintitle {
    font-size: 30px;
    font-weight: bold;
    color: #8e2121;
    margin: 5px 0;
}

.tsc-description {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tsc-description p {
    margin: 0;
}

.tsc-button,
.tsc-cta-button {
    display: block;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border: 0px;
    background-color: #8e2121;
    border-radius: 5px;
    text-decoration: none !important;
    color: #FFF;
    transition: background-color 0.3s ease;
}

.tsc-button:hover {
    background-color: #eab627;
    color: #000;
}

.swiper-button-next,
.swiper-button-prev {
    color: #8e2121;
}

.swiper-button-prev {
    left: 20px;
}

.swiper-button-next {
    right: 20px;
}

.swiper-pagination-bullet {
    background-color: #ccc;
    opacity: 1;
    width: 30px;
    border-radius: 10px;
    height: 3px;
}

.swiper-pagination-bullet-active {
    background-color: #8e2121;
}

.tsc-cta-section {
    background-color: #fff9f0;
    border-radius: 10px;
    padding: 20px 30px;
    margin: 40px auto 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tsc-cta-section p {
    margin: 0;
    line-height: 1.7;
    color: #333;
}

.tsc-cta-button {
    background-color: #8e2121;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .swiper-slide {
        width: 90%;
    }

    .tsc-slide-inner {
        flex-direction: column-reverse;
        text-align: center;
    }

    .tsc-slide-content {
        padding-right: 0;
        margin-top: 20px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .tsc-cta-section {
        flex-direction: column;
        text-align: center;
    }

    .tsc-cta-button {
        margin-top: 15px;
    }
}