
        .hero-banner {
             background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/assets/images/whybanner.png') center/cover no-repeat;
         
            min-height: 400px;
            position: relative;
            color: white;
            padding: 10rem 0 2rem;
        }
        .hero-banner::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.4);
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        .bannericon{
            width: 6.7rem;
        }

        /* 客戶 Logo 區塊 */
        .client-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        .client-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* 服務卡片 */
        .service-card {
            border: 1px solid #D6D6D6;
            border-radius: 10px;
            padding: 1.5rem 1rem;
            margin-bottom: 1.5rem;
            background: white;
            transition: all 0.3s ease;
            display: flex;
        }
        .service-card:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transform: translateY(-3px);
        }
        .service-card-img{
             width: 6.5rem;
            height: 2.5rem;
        }
        .service-card-img img{
            width: 2.5rem;
            height: 2.5rem;
        }

        /* 流程圓圈 */
        .phase-circle {
            width: 15rem;
            height: 15rem;
            border: 2px solid #FF2200;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin: 0 auto;
            background: white;
        }
        .phase-circle small{
            color: #FF2200;
            font-size: 1.25rem;
        }
        .phase-circle h4{
            color: #0D0D0D;
            font-size: 1.5rem;
        }
        /* 自定義動畫觸發類 */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* 響應式調整 */
        @media (max-width: 768px) {
            .hero-banner {
                min-height: 300px;
            }
            .phase-circle {
                width: 180px;
                height: 180px;
            }
        }

        /* 卡片容器 */
        .service-card2 {
            border-radius: 16px;
            overflow: hidden;
            background-color: #ffffff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        /* 卡片懸浮效果 */
        .service-card2:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        }

        /* 圖片區域 */
        .service-card2 .img-wrapper {
            flex: 0 0 auto;
            width: 10rem;
            height: 6.25rem;
            overflow: hidden;
            position: relative;
        }

        .service-card2 .img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card2:hover .img-wrapper img {
            transform: scale(1.08);
        }

        /* 文字內容區域 */
        .service-card2 .content {
            flex: 1;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .service-card2 .content h3 {
            font-size: 1.25rem;
            font-weight: 500;
            margin: 0;
            color: #212529;
        }

        /* 箭頭圖標動畫 */
        .service-card2 .arrow-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        .arrow-icon img{
            width: 0.6rem;
        }
        .service-card:hover .arrow-icon {
            transform: translateX(4px);
        }

        /* 手機版樣式 */
        @media (max-width: 767.98px) {
            .service-card{
                flex-direction: column;
            }
            .service-card-img{
                margin-bottom: 1rem;
            }
            .service-card2 {
                flex-direction: column;
                text-align: left;
            }

            .service-card2 .img-wrapper {
                width: 100%;
                height: 180px;
            }

            .service-card2 .content {
                width: 100%;
                padding: 1.25rem 1.5rem;
            }

         
        }

        /* 平板版樣式 */
        @media (min-width: 768px) and (max-width: 991.98px) {
            .service-card2 .img-wrapper {
                width: 200px;
                height: 140px;
            }

        }