@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.3rem !important;
    }

    p {
        font-size: 1rem !important;
    }
}

section {
    padding-top: 120px;
}

.fixed-image-container {
    position: relative;
    width: 100%;
    padding-top: 35%;
    overflow: hidden;
}

.fixed-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保持圖片比例，必要時裁切填滿容器 */
}


/* base.html */

header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 120px;
}

nav .bg-white {
    background-color: #FFFFFF !important;
}

nav #logo {
    transition: all 0.3s ease-in-out;
}

nav .navbar {
    transition: all 0.3s ease-in-out;
}

nav #navbarSupportedContent {
    float: right;
}

nav .container {
    z-index: 9999;
}

nav .navbar-nav {
    --bs-scroll-height: 400px;
}

nav .nav-container {
    width: 100%;
    float: right;
}

nav .nav-link {
    font-weight: 400;
    min-width: 60px;
    font-size: 19px;
    transition: 0.15s ease-in-out;
    color: #000000;
}

nav .dropdown-menu {
    margin: 0px 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    border: 0px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    opacity: 0;
    transition: opacity .2s ease-in-out;
}

nav .dropdown-menu:not(.show) {
    position: absolute;
    display: block;
    top: -10000px;
}

nav .dropdown-menu.show {
    transition: opacity .2s ease-in-out;
    opacity: 1;
}

nav .nav-item {
    padding: 5px 5px 5px 5px;
    text-transform: none;
}

nav .category-container {
    display: flex;
    flex-wrap: nowrap;
}

nav .dropdown-btn {
    border: 0px;
    flex: auto;
    background: none;
    display: flex;
    align-items: center;
    justify-content: end;
}

nav .dropdown-btn i {
    color: #000000;
}

nav .dropdown-menu li:last-child a {
    border: 0px;
}

nav .dropdown-menu li:hover:first-of-type a {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

nav .dropdown-menu li:hover:last-of-type a {
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}

nav .dropdown-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 8px 16px;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
}

nav .sub-dropdown-menu li {
    list-style-type: revert;
    color: #000000;
}

nav .dropdown-item:hover,
nav .dropdown-item:active {
    background-color: #f8f9fa;
    color: #000000;
}

.list-icon span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px 0;
    background-color: #FFF;
    border-radius: 50px;
}


nav #entw {
    text-align: right;
}

nav #entw span.entwbtn {
    text-transform: none;
    border: 1px black solid;
    padding: 3px 10px 3px 10px;
    -webkit-border-radius: 99px;
    -moz-border-radius: 99px;
    border-radius: 99px;
    transition: all 0.1s linear;
}

nav #entw span.entwbtn:hover {
    border: 1px #000000 solid;
    background: #000000;
    color: white;
    transition: all 0.3s ease-in-out;
}

button:focus {
    outline: none;
}

@media screen and (max-width: 1200px) {
    nav .nav-link {
        font-size: 17px;
    }
}

@media screen and (min-width: 992px) {
    nav .dropdown-btn {
        display: none;
    }

    nav .navbar-nav {
        display: flex;
        align-items: center;
    }

    nav .category {
        padding: 4px 0px;
        transition: all 0.5s ease-in-out;
    }

    nav .category:hover {
        transition: all 0.3s ease-in-out;
        color: #000000;
        box-shadow: 0px 3px #000000;
    }

    nav .hover {
        color:#000000;
        box-shadow: 0px 3px #000000;
    }

    nav .active {
        color: #000000 !important;
        box-shadow: 0px 3px #000000;
    }
}

@media screen and (max-width: 991px) {
    nav.navbar {
        position: static;
    }

    nav .nav-link {
        font-size: 15px;
        padding: 7px 8px;
    }

    nav .navbar-toggler {
        background: #000000;
    }

    nav .navbar-toggler:focus {
        box-shadow: none;
    }

    nav .navbar-toggler i {
        color: white;
        border: 0px;
    }

    nav .nav-item {
        padding: 0px;
        text-align: center;
    }

    nav .category {
        color: #000000 !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    nav .nav-link.show,
    nav .nav-link:focus,
    nav .nav-link:hover {
        color: #000000 !important;
    }

    nav #entw {
        padding: 7px 0px;
    }

    nav .dropdown-menu {
        margin: 10px 5px;
    }
}

footer {
    background-color: #329592;
}

footer .footer-text-color {
    color: #FFF;
}

footer div {
    font-size: 20px;
    align-content: center;
}


/* index.html */

.section-index .text-overlay-container {
    position: relative;
    /*display: inline-block;*/
}

.section-index .text-overlay {
    z-index: 999;
    position: absolute;
    top: 30%;
    left: 10%;
    /*transform: translate(-50%, -50%); !* 讓文字水平 & 垂直居中 *!*/
    text-align: left;
    color: white; /* 讓文字顏色與圖片對比 */
    padding: 20px;
    border-radius: 10px;
}

.section-index .overlay-img {
    position: absolute;
    bottom: 0;
    transform: translateY(0%);;
}

.section-index .left-content {
    background-color: #ffffff;
    color: #000000;
}

.section-index .right-content {
    background-color: #329592;
    color: #ffffff;
}

.section-index .col-lg-6 {
    position: relative;
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
}

.section-index .li-title {
    color: #329592;
    font-size: 1.3rem !important;
}

.section-index .custom-white-outline {
    color: white;
    border: 1px solid white;
}
.section-index .custom-white-outline:hover {
    background-color: white;
    color: black;
}

.section-index .row p {
    font-size: 1.3rem !important;
}

@media screen and (max-width: 768px) {
    .section-index .text-overlay h1 {
         font-size: 1rem!important;
    }
}

/* feature.html */

.section-feature .overlay-img {
    position: absolute;
    bottom: 0;
}

.section-feature .text-overlay-container {
    position: relative;
}

.section-feature .text-overlay-container img {
    width: 100%;
    height: auto;
    display: block;
}

.section-feature .text-overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.section-feature .main-title {
    margin-bottom: 10px;
}

.section-feature .sub-title {
    font-size: 20px;
    margin-bottom: 5px;
}

.section-feature .sub-desc {
    font-size: 18px;
    margin-bottom: 15px;
}

.section-feature .btn-wrapper {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.section-feature .btn-img img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.section-feature .btn-img img:hover {
    transform: scale(1.05);
}



/* team.html */

.section-team .international-section {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.section-team .background-img {
    height: 350px;
    width: 100%;
}

.section-team .text-overlay {
    position: absolute;
    top: 70%;
    left: 10%;
    transform: translateY(-50%);
    color: #000000;
    max-width: 600px;
}

.section-team .main-title {
    margin-bottom: 15px;
}

.section-team .subtitle {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

.section-team .description {
    font-size: 20px;
    font-weight: 400;
    color: #3a6b75;
}

.section-team .highlight {
    color: white;
    font-weight: bold;
}

.section-team .item-container {
    margin-top: 15px;
}

.section-team .table-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-team .table-container div {
    padding: 50px;
}

.section-team h3 {
    margin-bottom: 10px;
    padding-top: 15px;
}

.section-team .item-container p,
.section-team .item-container li {
    font-size: 20px;
}

.section-team ol {
    list-style-type: decimal;
    padding-left: 20px;
}

.section-team ol li {
    text-align: left;
    margin-bottom: 5px;
}

.section-team .item-container p,
.section-team .item-container li {
    font-size: 20px !important;
}

.section-team .top-left-content {
    background-color: #d4f1f4;
    color: #000000;
}

.section-team .top-right-content {
    background-color: #ffffff;
    color: #000000;
}

.section-team .down-left-content {
    background-color: #FFFFFF;
    color: #000000;
}

.section-team .down-right-content {
    background-color: #75E6DA;
    color: #000000;
}


.section-team .col-lg-6 {
    position: relative;
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
}

.section-team .li-title {
    color: #329592;
    font-size: 1.3rem !important;
}



/* service.html */
.section-service .overlay-img {
    position: absolute;
    bottom: 0;
    transform: translateY(0%);;
}

.section-service .text-overlay-container {
    position: relative;
    /*display: inline-block;*/
}

.section-service .text-overlay {
    position: absolute;
    top: 30%;
    left: 10%;
    /*transform: translate(-50%, -50%); !* 讓文字水平 & 垂直居中 *!*/
    text-align: left;
    color: white; /* 讓文字顏色與圖片對比 */
    padding: 20px;
    border-radius: 10px;
}


.section-service .profile-container {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.section-service .left-column {
    flex: 4;
    text-align: center;
}

.section-service .left-column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.section-service .name-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.section-service .left-column .name {
    font-size: 1.5em;
    font-weight: bold;
    text-align: right;
}

.section-service .left-column .title {
    font-size: 1.2em;
    color: gray;
    text-align: left;
}

.section-service .left-column .current-position {
    margin-top: 10px;
    text-align: left;
}

.section-service .right-column {
    flex: 6; /* 右欄比例 60% */
    padding-left: 20px;
}

.section-service .right-column .section {
    margin-bottom: 20px;
}

.section-service .right-column .section h3 {
    margin-bottom: 5px;
    font-size: 1.2em;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

.section-service .bottom-border {

    padding-bottom: 10px;
    padding-top: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
}

/* 手機版響應式調整 */
@media screen and (max-width: 768px) {
    .section-service .profile-container {
        flex-direction: column; /* 改為上下排列 */
        gap: 20px; /* 上下間距 */
    }

    .section-service .left-column {
        text-align: center; /* 手機版左欄文字置中 */
    }

    .section-service .right-column {
        padding-left: 0; /* 移除右欄內邊距 */
    }
}


/*environment.html*/

.section-environment .button-bar {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    margin-top: 20px;
}

.section-environment .btn-bar {
    flex: 1 1 calc(25% - 10px);
    padding: 15px 0;
    text-align: center;
    font-size: 16px;
    color: black;
    background-color: #DFF5E1;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-environment .btn-bar.active {
    background-color: #81C784;
    color: white;
}

.section-environment .btn-bar:hover {
    background-color: #A5D6A7;
    color: black;
}

.section-environment .section-content {
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section-environment .d-none {
    display: none;
}

@media (max-width: 1140px) {
    .section-environment .btn-bar {
        flex: 1 1 35%;
    }
}

@media (max-width: 768px) {
    .section-environment .btn-bar {
        flex: 1 1 100%;
    }
}

/* government.html */

/* 父容器：平均分配寬度、取消 default list style */
section-government .card-container {
    gap: 0;                    /* 三區塊緊貼，靠 ::before 畫分隔線 */
}

/* 主卡片樣式 */
section-government .gov-card {
    position: relative;        /* 為了放分隔線 */
    padding: 2.5rem 1.5rem;
    transition: transform .25s ease, box-shadow .25s ease;
    color: #333;               /* 靜態文字色，保持 Bootstrap 預設亦可 */
}

/* 垂直分隔線：只要不是第一張卡片就畫線 */
.section-government .gov-card + .gov-card::before {
    content: "";
    position: absolute;
    top: 15%;
    bottom: 15%;
    left: 0;
    width: 1px;
    background: #d9d9d9;
}

/* 圓形 ICON 容器 */
.section-government .icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: #debad6;       /* 可自行換色 */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;           /* icon 大小 */
    color: #fff;
}

/* 標題 & 內文 */
.section-government .gov-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: .75rem;
    color: black;
}
.section-government .gov-card .card-text {
    font-size: .95rem;
    line-height: 1.6;
    color: black;
}

/* Hover 效果：整塊上浮、加陰影 */
.section-government .gov-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
    text-decoration: none;     /* 防止 <a> 的底線 */
}

.section-government .icon-wrapper img {
    width: 60%;      /* 圖片大小，依需求調整 */
    height: 60%;
    object-fit: contain; /* 保持比例，不裁切 */
}

/* year-subsidy-case.html */

.section-year-subsidy-case .button-bar {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    margin-top: 20px;
}

.section-year-subsidy-case .btn-bar {
    flex: 1 1 calc(25% - 10px);
    padding: 15px 0;
    text-align: center;
    font-size: 16px;
    color: black;
    background-color: #DFF5E1;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/*.section-year-subsidy-case .btn-bar.active {*/
/*    background-color: #81C784;*/
/*    color: white;*/
/*}*/

.section-year-subsidy-case .btn-bar:hover {
    background-color: #A5D6A7;
    color: black;
}

.section-year-subsidy-case .section-content {
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1141px) {
    .section-year-subsidy-case .btn-bar {
        flex: 1 1 30%;
    }
}

@media (max-width: 1140px) {
    .section-year-subsidy-case .btn-bar {
        flex: 1 1 40%;
    }
}

@media (max-width: 768px) {
    .section-year-subsidy-case .btn-bar {
        flex: 1 1 100%;
    }
}

/* year_carbon_inventory.html */

.section-year-carbon-inventory .button-bar {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    margin-top: 20px;
}

.section-year-carbon-inventory .btn-bar {
    flex: 1 1 calc(25% - 10px);
    padding: 15px 0;
    text-align: center;
    font-size: 16px;
    color: black;
    background-color: #DFF5E1;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-year-carbon-inventory .btn-bar:hover {
    background-color: #A5D6A7;
    color: black;
}

.section-year-carbon-inventory .section-content {
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1140px) {
    .section-year-carbon-inventory .btn-bar {
        flex: 1 1 35%;
    }
}

@media (max-width: 768px) {
    .section-year-carbon-inventory .btn-bar {
        flex: 1 1 100%;
    }
}

/* make_good_use.html */


.section-make-good-use .button-bar {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    margin-top: 20px;
}

.section-make-good-use .btn-bar {
    flex: 1 1 calc(25% - 10px);
    padding: 15px 0;
    text-align: center;
    font-size: 16px;
    color: black;
    background-color: #DFF5E1;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-make-good-use .btn-bar.active {
    background-color: #81C784;
    color: white;
}

.section-make-good-use .btn-bar:hover {
    background-color: #A5D6A7;
    color: black;
}

.section-make-good-use .section-content {
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section-make-good-use .d-none {
    display: none;
}

@media (max-width: 1140px) {
    .section-make-good-use .btn-bar {
        flex: 1 1 35%;
    }
}

@media (max-width: 768px) {
    .section-make-good-use .btn-bar {
        flex: 1 1 100%;
    }
}

/* coach.html */

.section-coach .button-bar {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    margin-top: 20px;
}

.section-coach .btn-bar {
    flex: 1 1 calc(25% - 10px);
    padding: 15px 0;
    text-align: center;
    font-size: 16px;
    color: black;
    background-color: #DFF5E1;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-coach .btn-bar:hover {
    background-color: #A5D6A7;
    color: black;
}

.section-coach.section-content {
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1140px) {
    .section-coach .btn-bar {
        flex: 1 1 35%;
    }
}

@media (max-width: 768px) {
    .section-coach .btn-bar {
        flex: 1 1 100%;
    }
}

/*society.html*/

.section-society .button-bar {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    margin-top: 20px;
}

.section-society .btn-bar {
    flex: 1 1 calc(25% - 10px);
    padding: 15px 0;
    text-align: center;
    font-size: 16px;
    color: black;
    background-color: #DFF5E1;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-society .btn-bar.active {
    background-color: #81C784;
    color: white;
}

.section-society .btn-bar:hover {
    background-color: #A5D6A7;
    color: black;
}

.section-society .section-content {
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section-society .d-none {
    display: none;
}

@media (min-width: 1141px) {
    .section-society .btn-bar {
        flex: 1 1 30%;
    }
}

@media (max-width: 1140px) {
    .section-society .btn-bar {
        flex: 1 1 40%;
    }
}

@media (max-width: 768px) {
    .section-society .btn-bar {
        flex: 1 1 100%;
    }
}

/*governance.html*/

.section-governance .section-content {
    padding: 100px 15px;
}

.section-governance .button-bar {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    margin-top: 20px;
}

.section-governance .btn-bar {
    flex: 1 1 calc(33.33% - 10px);
    padding: 15px 0;
    text-align: center;
    font-size: 16px;
    color: black;
    background-color: #DFF5E1;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-governance .btn-bar.active {
    background-color: #81C784;
    color: white;
}

.section-governance .btn-bar:hover {
    background-color: #A5D6A7;
}

@media (max-width: 1140px) {
    .section-governance .btn-bar {
        flex: 1 1 50%;
    }
}

@media (max-width: 768px) {
    .section-governance .btn-bar {
        flex: 1 1 100%;
    }
}

/* news.html */

.section-news h3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;  /* 限制顯示兩行 */
    -webkit-box-orient: vertical;  /* 設置為垂直方向 */
    line-height: 1.6em;  /* 調整行高來確保每行文字高度一致 */
    text-overflow: ellipsis;  /* 如果標題過長，會顯示省略號 */
    min-height: 3.2em;  /* 確保最小高度為兩行 */
}

.section-news .read-btn {
    background-color: #5AA8E0;
    color: white;
    float: right;
    border: 3px solid transparent;
    transition: all 0.3s ease-in-out; /* 平滑過渡效果 */
}

.section-news .read-btn:hover {
    background-color: #FFF;
    color: #5AA8E0;
    border-color: #5AA8E0; /* 變更邊框顏色 */
}


/* point.html */
.section-point h3 {
    padding-top: 20px;
    padding-bottom: 10px;
}

.section-point h3,
.section-point h6,
.section-point p {
    text-align: center;
}

.section-point img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto; /* 確保水平置中 */
}

.section-point .card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.section-point .card {
    width: 280px;
    height: 200px;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.section-point .bg1 {
    background-color: #BED1BC;
}
.section-point .bg2 {
    background-color: #7AA7B9;
}
.section-point .bg3 {
    background-color: #562F0E;
    color: white;
}

.section-point hr {
    border: none;
    border-top: 2px solid #ffffff88;
    margin: 0 0 12px;
}


/* case.html */

.section-case .case-item {
    position: relative;
    overflow: hidden;
}

.section-case .image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-case .image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section-case .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(90, 168, 224, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.section-case .overlay .company-name {
    font-size: 1.2rem;
    text-align: center;
}

.section-case .case-item:hover .overlay {
    opacity: 1;
}

/* connect.html */
/* connect_success.html */
.section-connect-success .btn-color,
.section-connect .btn-color {
    background-color: #5AA8E0;
    color: #FFF;
    border: 3px solid transparent; /* 預設邊框透明 */
    padding: 10px 20px;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    box-sizing: border-box; /* 包括邊框在內的大小 */
    transition: all 0.3s ease-in-out; /* 平滑過渡效果 */
}

.section-connect-success .btn-color:hover,
.section-connect .btn-color:hover {
    background-color: #FFF;
    color: #5AA8E0;
    border-color: #5AA8E0; /* 變更邊框顏色 */
}

/* 404.html */
/* 500.html */

.section-404 .btn-color,
.section-500 .btn-color {
    background-color: #5AA8E0;
    color: #FFF;
    border: 3px solid transparent;
    padding: 10px 20px;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

.section-404 .btn-color:hover,
.section-500 .btn-color:hover {
    background-color: #FFF;
    color: #5AA8E0;
    border-color: #5AA8E0; /* 變更邊框顏色 */
}


/* service_scope */

.section-service_scope .button-group {
    position: absolute;
    top: 40%;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 2;
}

.section-service_scope .button-group button {
    background-color: transparent;
    border: 3px solid white;
    color: white;
    padding: 8px 20px;
    font-size: 16px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-service_scope .card,
.section-management .card,
.section-strategy .card {
    position: relative;
    width: 260px;
    padding: 50px 24px 32px;
    border: 2px solid #c54c4c;
    border-radius: 6px;
    background:#fff;
    text-align: center;
}

.section-service_scope .icon-wrapper,
.section-management .icon-wrapper,
.section-strategy .icon-wrapper{
    position:absolute;
    top:-40px;
    left:50%;
    transform:translateX(-50%);
    width:80px;
    height:80px;
    border-radius:50%;
    background: #a3a3a3;
    display:flex;
    align-items:center;
    justify-content:center;
    border:4px solid #fff;
    box-shadow:0 2px 6px rgba(0,0,0,.15);
}
.section-service_scope .icon-wrapper img,
.section-management .icon-wrapper img,
.section-strategy .icon-wrapper img {
    width:60%;
    height:auto;
}

.section-service_scope .card h3,
.section-management .card h3,
.section-strategy .card h3 {
    margin:12px 0 4px;
    font-size:1.05rem;
    font-weight:600;
    color:#333;
}

.section-service_scope .divider,
.section-management .divider,
.section-strategy .divider {
    width:60px;
    height:4px;
    background:#c54c4c;
    margin:0 auto 16px;
}

.section-service_scope .card p,
.section-management .card p,
.section-strategy .card p{
    font-size:.9rem;
    line-height:1.6;
    color:#555;
    margin-bottom:24px;
}

.section-service_scope .btn,
.section-management .btn,
.section-strategy .btn {
    display:inline-block;
    padding:8px 20px;
    border:1px solid #c54c4c;
    border-radius:24px;
    font-size:.9rem;
    color:#c54c4c;
    text-decoration:none;
    transition:.25s;
}
.section-service_scope .btn:hover,
.section-management .btn:hover,
.section-strategy .btn:hover {
    background:#c54c4c;
    color:#fff;
}


