    @import url("https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css");

    /* B 700 */
    @font-face {
        font-family: SweiGothicCJKtc-Bold;
        src: url(https://cdn.jsdelivr.net/gh/cetyyteng/stigma_research/fonts/SweiGothicCJKtc-Bold-subset.woff2) format("woff2");
        font-display: swap;
    }

    .font-900 {
        font-family: SweiGothicCJKtc-Bold;

        font-weight: 900;
    }

    .font-700 {
        font-family: SweiGothicCJKtc-Bold;
        font-weight: 700;
    }

    .font-500 {
        font-family: "Noto Sans TC";
        font-weight: 500;
    }

    .container-readable {
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        /* border: solid red 1px; */
        margin-left: auto;
        margin-right: auto;
        /* padding-left: 1rem;
        padding-right: 1rem; */
    }

    :root {


        /* Desktop (1200px and up) */
        --font-base-size: 16px;
        font-size: calc(var(--font-base-size) * 1);
        --navbar-height: 70px;
        /* 預設 fallback 避免閃爍 */
        --blue: #46A0D2;
        --light-blue: #CDEDF9;
        --white: #ffffff;
        --beige: #F5F5EB;

    }

    .blue {
        color: var(--blue)
    }

    .light-blue {
        color: var(--light-blue)
    }

    .white {
        color: var(--white)
    }

    .beige {
        color: var(--beige)
    }

    body {
        background-color: var(--beige);
    }

    .decorated-title {
        font-size: 2.5rem !important;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        color: #35A97C;
        -webkit-text-stroke: 6px white;
        paint-order: stroke fill;
        letter-spacing: 0.3rem;
    }

    .decorated-title::before,
    .decorated-title::after {
        content: "";
        display: block;
        width: 60px;
        height: 3px;
        background-color: currentColor;
        margin: 0 1rem;
        box-shadow: 0 0 0 3px white;
    }

    /* Section Hero 響應式樣式 */
    .section-hero {
        background-size: 100% auto;
        background-position: top center;
        background-repeat: no-repeat;
        padding-top: 8rem;
        padding-bottom: 10rem;
    }

    @media (max-width: 1024px) {
        .section-hero {
            background-size: cover;
            min-height: auto;
            padding-top: 5rem;
            padding-bottom: 4rem;
        }

        .decorated-title {
            font-size: 2rem !important;
        }

        .decorated-title::before,
        .decorated-title::after {
            width: 40px;
        }
    }

    p {
        padding: 0 1rem 0rem 1rem;
        text-align: justify;
        font-family: "Noto Sans TC";
        /* M */
        color: #3f3f3f;
        font-size: 1.2rem;
    }

    #qa h3 {
        font-size: 1rem;
    }

    footer p {
        font-weight: 400;
    }

    .content-block_text {
        font-family: "Noto Sans TC";
        margin-bottom: 0;
    }

    @media (max-width: 575px) {

        p,
        .p,
        #qa h3 {
            font-size: 1.1rem;
            /*  18px    */
        }

    }

    /* 寬度 */
    @media(min-width:1024px) {
        .container-readable {
            width: 1024px;
        }

        #ceo-story_mobile_1,
        #ceo-story_mobile_2 {
            display: none;
        }
    }

    @media(max-width:1023px) {
        .container-readable {
            max-width: 480px;

        }

        #ceo-story_desktop {
            display: none;
        }

        #ceo-story_mobile_2 {
            display: flex;
            justify-content: center;
        }
    }

    @media (min-width:768px) and (max-width:1023px) {
        #influence .container-readable {
            max-width: 100%;
            /* padding 已在基础样式中统一设置 */
        }
    }

    @media(max-width:428px) {
        .content-block_img {
            padding-left: 1rem;
            padding-right: 1rem;
        }
    }

    /*測試區    */

    .dark-filter {
        width: 100%;
        height: 400px;
        /* 設置背景圖與顏色 */
        background-image: url('https://www.cet-taiwan.org/sites/cet-taiwan.org/files/glazed-builder/20220608-1.jpg');
        background-color: rgba(0, 0, 0, 0.5);
        /* 黑色半透明 */

        /* 關鍵屬性：定義背景圖與顏色的混合方式 */
        background-blend-mode: multiply;

        background-size: cover;
        background-position: center;
    }

    .white-filter {
        background-image: url('https://www.cet-taiwan.org/sites/cet-taiwan.org/files/glazed-builder/20220608-1.jpg');
        background-color: rgba(255, 255, 255, 0.5);
        /* 白色半透明 */
        background-blend-mode: overlay;
        /* 白色濾鏡建議用 overlay 或 lighten */
        background-size: cover;
    }




    /* 特定區塊 */

    /* 1. 父容器設定：變成定位基準，且不設背景 */
    #front-cover {
        position: relative;
        /* 讓偽元素可以對齊這裡 */
        overflow: hidden;
        /* 把模糊後溢出的邊緣切掉 */
        z-index: 0;
        /* 建立堆疊環境 */

        /* 這裡不需要 background 相關語法了，全部移到底下 */
    }

    /* 2. 偽元素設定：負責顯示背景圖 + */
    #front-cover::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        /* 關鍵：讓它排在文字後面 */

        /* --- 從你原本的 code 搬過來的背景設定 --- */
        background-image: url('https://www.cet-taiwan.org/sites/cet-taiwan.org/files/u355/20250116-002.webp');
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        /* 這裡建議保留原本底色，以免圖片沒載入時一片白 */
        background-color: #e8e8e0;

    }

    #ceo-story_desktop {
        position: relative;
    }

    #ceo-story_mobile_1 {
        background-size: 500px, auto;

    }

    #grid-paper {
        position: absolute;
        z-index: 1;
        left: 0;
        top: 1rem;
        bottom: 1rem;
        width: calc(50% - 30px);
        transform: none;
        background-repeat: repeat;
        background-position: left center;
        background-size: 550px auto;
        pointer-events: none;
    }

    #grid-paper_mobile {
        background-repeat: repeat;
        background-size: contain;

    }

    #banner-middle,
    #child-run {
        position: relative;
        height: 45rem;
        overflow: hidden;
    }

    #full-img-1,
    #full-img-2 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    #banner-middle .container-readable {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        /* 讓文字在圖片上 */
        /* 明确设置宽度，确保与其他 container-readable 对齐 */
        width: 100%;
        max-width: 480px;
    }

    #child-run .container-readable {
        position: absolute;
        top: 0%;
        left: 0%;
        /* transform: translateX(-50%); */
        z-index: 1;
        /* 讓文字在圖片上 */
        /* 明确设置宽度，确保与其他 container-readable 对齐 */
        width: 100%;
        max-width: 480px;
    }

    @media(min-width:1024px) {

        #banner-middle .container-readable,
        #child-run .container-readable {
            max-width: 1024px;
            width: 1024px;
        }
    }

    #heading-1 h2 {
        letter-spacing: 0.4rem;
    }

    @media (max-width:320px) {
        #heading-1 h2 {
            letter-spacing: 0.13rem;
        }
    }

    @media (max-width:575px) {
        #heading-1 {
            text-align: center;
        }

    }

    #child-run {

        overflow: hidden;
        position: relative;
        height: 45rem;
    }

    #full-img-2 {
        object-fit: cover;
        object-position: 25% 25%;

    }

    @media (min-width: 768px) and (max-width: 1199px) {

        #child-run,
        #banner-middle {

            height: 30rem;
        }

        #full-img-1 {
            object-position: 25% top;
        }

        #full-img-2 {
            object-position: 25% top;
        }
    }

    @media (min-width: 768px) {
        #child-run {
            min-height: 45rem;
            /* min-height: 60vh; */
        }
    }

    #child-run::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 15%;
        background: linear-gradient(to bottom,
                transparent 0%,
                rgba(245, 245, 235, 0.15) 20%,
                rgba(245, 245, 235, 0.15) 25%,
                /* var(--beige) 95%, */
                var(--beige) 100%);
        mix-blend-mode: normal;
        pointer-events: none;
        z-index: 1;
    }

    #child-run .container-readable {
        position: relative;
        z-index: 2;
        padding-top: 3rem;
        padding-bottom: 0;
    }

    @media (max-width: 767px) {

        #banner-middle,
        #child-run {
            height: 30rem;
        }

        #full-img-1 {
            object-position: 70% top;
        }

        #full-img-2 {
            object-position: 25% top;
        }

        /* 移動端：調整文字位置，確保不遮蓋人物 */
        #child-run .container-readable {
            padding-top: 1.5rem;
            /* 移動端可以稍微減少頂部間距 */
        }
    }

    @media (min-width: 1200px) {

        #child-run,
        #banner-middle {
            height: 45rem;
        }

        #full-img-1 {
            object-position: center right;
        }
    }

    .donate-invite h3 {
        letter-spacing: 0.2rem;

    }

    #lets-donate {
        background-color: var(--beige);
    }

    #lets-donate-bottom {
        background-color: var(--blue)
    }

    .donate-invite-heading-2 {
        display: flex;
        align-items: center;
    }

    #lets-donate-bottom .rounded-title {
        background-color: var(--beige);
    }

    .photo-credit {
        position: absolute;
        bottom: 1rem;
        right: 1rem;
    }

    .photo-credit p {
        color: #ffffff;
        font-weight: 300;
    }

    #photo-credit-2 {
        z-index: 2;
    }

    #photo-credit-2 p {
        color: gray;
    }

    .section-header {
        font-weight: 900;
        font-family: "SweiGothicCJKtc-Bold";
    }

    .rounded-title {
        background-color: var(--blue);
        border-radius: 999px;
        display: inline-block;
        padding: 1rem 1.5rem;
        width: fit-content;
        font-family: "SweiGothicCJKtc-Bold";
        color: var(--white);
        font-weight: 900;
    }

    #lets-donate .rounded-title,
    #lets-donate-bottom .rounded-title {
        /* 新增：讓外觀看起來可按 */
        cursor: pointer;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
        transition: all 0.2s ease;

    }

    /* 讓整塊都可以點，避免只有文字可點擊 */
    .rounded-title a {
        color: inherit;
        text-decoration: none;
        display: block;
    }

    /* Hover 效果 */
    #lets-donate .rounded-title:hover,
    #lets-donate-bottom .rounded-title:hover {
        background-color: #003e82;
        /* 略深的藍 */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
        transform: translateY(-2px);
    }

    /* 點下去時的效果 */
    #lets-donate .rounded-title:active,
    #lets-donate-bottom .rounded-title:active {
        background-color: #002f63;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
        transform: translateY(0);
    }

    #lets-donate-bottom .rounded-title:active a,
    #lets-donate-bottom .rounded-title:hover a {
        color: white;
    }

    /* @media (max-width:767px) {
        .rounded-title{
            font-family: "Noto Sans TC";
        }
        
    } */
    #lets-donate-bottom .rounded-title h2,
    #lets-donate-bottom .rounded-title h3,
    #lets-donate-bottom .rounded-title h4,
    #lets-donate-bottom .rounded-title a {
        margin: 0;
        color: var(--blue);
        font-weight: 900;
        /* line-height: 1.3 !important; */
    }

    .rounded-title h2,
    .rounded-title h3,
    .rounded-title h4,
    .rounded-title a {
        margin: 0;
        color: var(--white);
        font-weight: 900;
        /* line-height: 1.3 !important; */
    }

    .text-block {
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        max-width: 650px;
        margin: 0 auto;
    }

    .years-toggle-btn {
        margin-top: 1rem;
        margin-bottom: 0.5rem;
        background: none;
        border: none;
        color: var(--blue);
        font-weight: 700;
        text-decoration: underline;
        cursor: pointer;
        padding: 0;
    }

    .years-more {
        display: none;
        margin-top: 0.5rem;
    }

    .years-more.is-open {
        display: block;
    }

    #qa .accordion-item h4,
    #qa .accordion-item p {
        text-align: left;
    }

    #qa .accordion-header button {
        display: flex;
        width: 100%;
        justify-content: flex-start;
        text-align: left;
        font-weight: 500;
        font-family: "Noto Sans TC";
        border: none;
        color: #3f3f3f;
    }

    .accordion,
    .accordion-header button,
    .accordion-body {
        background-color: var(--beige);
    }

    #qa .accordion-item {
        border: none;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    #qa .accordion-item h3 {
        font-weight: 500;
    }

    #qa .accordion-body {
        padding-left: 0;
        padding-right: 0;
    }

    .faq-w {
        margin-bottom: 0;
    }

    p.faq-w {
        font-weight: 400;
        font-family: "Noto Sans TC";
    }

    #toggle-years {
        border: none;
        background-color: transparent;
        color: var(--blue);
    }

    .full-width-banner {
        width: 100vw;
        /* 滿整個 viewport */
        margin-left: calc(-50vw + 50%);
        /* 從 container 向左補齊 */
        padding: 1rem;
    }

    #content-block {
        background-color: var(--beige);
    }

    @media (max-width:992px) {
        #content-block {
            padding-bottom: 2rem;
        }
    }

    .cet-info {
        font-size: 0.88rem;
    }

    .photo-credit p {
        font-size: 0.625rem;
        font-weight: 300;
        margin-bottom: 0;
        padding-left: 0;
        padding-right: 0;
        opacity: 80%;

    }

    .cet-keyword {
        color: #35A97C;
        font-family: SweiGothicCJKtc-Bold;
        font-weight: 700;
    }

    @media (min-width:1200px) {
        .cet-info {
            font-size: 0.94rem;
        }

        .photo-credit p {
            font-size: 0.75rem;
        }
    }


    .img-div {
        object-fit: cover;
        border-radius: 23px;
    }

    /* navbar */
    #navbar {
        display: none;
    }

    .card {
        background-color: transparent;
        border: none;
    }

    #influence .card-img {
        height: 200px;
        padding: 0 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    #flag-img-desktop {
        position: absolute;
        left: 62%;
        transform: translateX(-50%);
    }

    #flag-img-mobile {
        left: 60%;
        transform: translateX(-50%);
    }

    .carousel-indicators {
        bottom: -1.5rem;
    }

    .carousel-indicators [data-bs-target] {
        background-color: var(--blue);
    }

    /* .card{border: solid red 1px;} */
    .card h3,
    .card li,
    .card a {
        text-align: left;
        color: #3f3f3f;
    }

    .card-body a {
        color: #3f3f3f !important
    }

    /* 讓三個card高度對齊 */
    #influence .row {
        align-items: stretch;
    }

    #cash-icon,
    #cash-icon-mobile {
        width: 55%;
        height: auto;
    }

    @media (max-width:768px) {
        #cash-icon {
            width: 30%;
        }

        #cash-icon-mobile {
            width: 60%;
        }

    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        position: relative;
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 50%;
        background-color: var(--blue);
        background-image: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .carousel-control-prev-icon::after,
    .carousel-control-next-icon::after {
        font-size: 1.3rem;
        color: #ffffff;
        font-weight: 400;
    }

    .carousel-control-prev-icon::after {
        content: '<';
    }

    .carousel-control-next-icon::after {
        content: '>';
    }

    .card-img-top {
        max-height: 160px;
        width: auto;
        object-fit: contain;
    }

    .card-body {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .card-text {
        flex-grow: 1;
    }

    /* 歷年成果 */
    .year {
        font-weight: 700;
        font-family: SweiGothicCJKtc-Bold;
        color: var(--blue);

    }

    .result p {
        font-weight: 400;
        font-family: "Noto Sans TC";
        /* text-indent: 2rem; */
        /* line-height: 1rem; */
    }


    /* 左右圖文 */
    .words {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* 垂直居中 */

    }

    @media (max-width: 991px) {
        .content-block_text {
            order: 2;
        }

        .content-block_img {
            order: 1;
        }

    }

    /*d-xl-block d-none*/
    @media (max-width: 1199px) {
        .desktop {
            display: none;
        }
    }

    @media (min-width: 1200px) {
        .mobile {
            display: none;
        }

    }

    /* 其他設定 */
    .rounded-title a,
    .rounded-title a:hover,
    .rounded-title a:visited,
    .rounded-title a:link,
    .rounded-title a:active {
        text-decoration: none;
        color: var(--white);
    }

    a,
    a:hover,
    a:visited,
    a:link,
    a:active {
        text-decoration: none;
        color: var(--blue);
    }

    #navbar {
        display: none;
    }

    div {
        padding: 0;
        margin: 0;
    }

    .container {
        /* background-color: #e4ebef; */
        padding: 0;
    }

    .row {
        margin: 0rem;
        /*只有這樣手機板空格太多*/
        padding: 0rem;
        /*同上不變*/
    }

    /* === 封面樣式 === */
    #front-cover {
        min-height: 100dvh;
        position: relative;
    }

    /* 下滑提示箭頭動畫 */
    .scroll-down {
        font-size: 2rem;
        color: #35A97C;
        animation: bounce 2s infinite;
        cursor: pointer;
        margin-top: 2rem;
        transition: opacity 0.3s ease;
    }

    .scroll-down:hover {
        opacity: 0.7;
    }

    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-15px);
        }

        60% {
            transform: translateY(-7px);
        }
    }

    /* 手機版：h1 字級縮小 */
    @media (max-width: 768px) {
        #front-cover h1 {
            font-size: 2.5rem !important;
        }

        #front-cover h2 {
            font-size: 1.2rem !important;
        }
    }

    /* ========================================
       Masonry / Waterfall Layout (2 columns)
       ======================================== */
    .masonry-container {
        column-count: 2;
        column-gap: 1.5rem;
        padding: 0 1rem;
    }

    .masonry-item {
        break-inside: avoid;
        margin-bottom: 1.5rem;
    }

    /* Responsive: disable masonry on tablet and mobile, use flexbox instead */
    @media (max-width: 992px) {
        .masonry-container {
            all: unset;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding: 0 0.5rem;
        }

        .masonry-item {
            all: unset;
            display: block;
            width: 100%;
        }
    }

    /* ========================================
       CEO Story 裝飾圖片樣式與動畫
       ======================================== */
    .ceo-deco-img {
        width: 120px;
        height: auto;
        /* 初始狀態：隱藏 */
        opacity: 0;
        transform: rotate(8deg) translateX(-20px);
        flex-shrink: 0;
    }

    /* 動畫觸發後的狀態 */
    .ceo-deco-img.animate-in {
        animation: fadeSlideIn 0.6s ease-out forwards;
    }

    /* 簡單淡入滑動動畫 */
    @keyframes fadeSlideIn {
        0% {
            opacity: 0;
            transform: rotate(8deg) translateX(-20px);
        }

        100% {
            opacity: 1;
            transform: rotate(8deg) translateX(0);
        }
    }

    /* 響應式處理：平板 */
    @media (max-width: 992px) {
        .ceo-deco-img {
            width: 90px;
        }
    }

    /* 手機上隱藏裝飾圖片，避免遮擋內容 */
    @media (max-width: 768px) {
        .ceo-deco-img {
            display: none;
        }
    }

    /* ========================================
       教推成果輪播牆樣式
       ======================================== */
    .edu-carousel-container {
        position: relative;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 20px;
        overflow: visible;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        border-left: 5px solid #35A97C;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .edu-carousel {
        overflow: hidden;
        border-radius: 0 20px 20px 0;
    }

    .edu-carousel-track {
        position: relative;
        width: 100%;
    }

    .edu-slide {
        display: none;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }

    .edu-slide.active {
        display: block;
        opacity: 1;
        animation: eduSlideIn 0.6s ease-out;
    }

    @keyframes eduSlideIn {
        0% {
            opacity: 0;
            transform: translateX(30px);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .edu-slide-content {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        min-height: 280px;
    }

    .edu-slide-image {
        flex: 0 0 45%;
        max-width: 45%;
        overflow: hidden;
    }

    .edu-slide-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    .edu-slide-text {
        flex: 1;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
    }

    .edu-slide-title {
        font-family: "SweiGothicCJKtc-Bold", sans-serif;
        font-weight: 900;
        font-size: 1.3rem;
        color: #35A97C;
        margin-bottom: 0.75rem;
    }

    .edu-slide-desc {
        font-family: "Noto Sans TC", sans-serif;
        font-size: 1rem;
        color: #3f3f3f;
        line-height: 1.7;
        margin-bottom: 1rem;
        text-align: left;
        padding: 0;
    }

    .edu-slide-stats {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
        border-top: 1px solid #e2e8f0;
        padding-top: 1rem;
        margin-top: 0.5rem;
    }

    .edu-stat {
        display: inline-flex;
        align-items: baseline;
        background: rgba(53, 169, 124, 0.1);
        padding: 0.5rem 1rem;
        border-radius: 30px;
        color: #35A97C;
        font-size: 0.95rem;
    }

    .edu-stat strong {
        font-family: "SweiGothicCJKtc-Bold", sans-serif;
        font-size: 1.3rem;
        margin-right: 0.3rem;
    }

    /* 導航點樣式 */
    .edu-carousel-dots {
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        gap: 0.75rem;
        padding: 0.5rem 1rem;
        background: transparent;
        z-index: 5;
    }

    .edu-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #d1d5db;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .edu-dot:hover {
        background: #9ca3af;
        transform: scale(1.15);
    }

    .edu-dot.active {
        background: #35A97C;
        transform: scale(1.2);
        box-shadow: 0 0 0 3px rgba(53, 169, 124, 0.25);
    }

    /* 左右箭頭按鈕 */
    .edu-carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        border: none;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .edu-carousel-btn:hover {
        background: #35A97C;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 6px 20px rgba(53, 169, 124, 0.35);
    }

    .edu-carousel-btn:hover svg {
        stroke: white;
    }

    .edu-carousel-btn svg {
        width: 24px;
        height: 24px;
        stroke: #35A97C;
        transition: stroke 0.3s ease;
    }

    .edu-prev {
        left: 1rem;
    }

    .edu-next {
        right: 1rem;
    }

    /* 響應式設計：平板 */
    @media (max-width: 992px) {
        .edu-slide-content {
            min-height: 250px;
        }

        .edu-slide-text {
            padding: 1.5rem;
        }

        .edu-slide-title {
            font-size: 1.35rem;
        }

        .edu-carousel-btn {
            width: 40px;
            height: 40px;
        }

        .edu-carousel-btn svg {
            width: 20px;
            height: 20px;
        }
    }

    /* 響應式設計：平板 */
    @media (max-width: 992px) {
        .edu-carousel-container {
            margin-left: 0.5rem;
            margin-right: 0.5rem;
        }
    }

    /* 響應式設計：手機 */
    @media (max-width: 768px) {
        .edu-carousel-container {
            margin-left: 2.5rem;
            margin-right: 2.5rem;
        }

        .edu-slide-content {
            flex-direction: column;
            min-height: auto;
        }

        .edu-slide-image {
            flex: none;
            max-width: 100%;
            height: 200px;
        }

        .edu-slide-text {
            padding: 1.5rem;
            padding-bottom: 2.5rem;
        }

        .edu-slide-title {
            font-size: 1.15rem;
        }

        .edu-slide-desc {
            font-size: 0.95rem;
        }

        .edu-stat strong {
            font-size: 1.15rem;
        }

        .edu-carousel-btn {
            width: 36px;
            height: 36px;
        }

        .edu-carousel-btn svg {
            width: 18px;
            height: 18px;
        }

        .edu-prev {
            left: -1.5rem;
        }

        .edu-next {
            right: -1.5rem;
        }

        .edu-carousel-dots {
            bottom: 0.75rem;
        }
    }