.banner{
    background-image: url(../image/banner-28.jpg);
    background-color: rgb(0 0 0 / 37%);
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-position: 50% 70% !important;
    background-size: cover;
    height: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.banner h1{
    color: #fff;
    font-weight: 600;
}

.banner-content {
    position: absolute;
}

.banner-content p {
    text-align: center;
    color: #fff;
}

a {
    width: 100%;
    display: contents;

}

.Feature-flex {
    display: flex;
    align-items: center; /* 讓文字和圖片頂端對齊 */
    gap: 40px; /* 左右間距，可調整 */
    flex-wrap: wrap; /* 當畫面太小時換行 */
}

p {
    color: #000;
}

strong {
    color: #1a376b;
}

.w3-content:nth-child(1){
    padding: 0;
}

ul ,li{
    padding: 0;
    margin: 0;
    list-style-type: none;
} 

h2 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    text-align: left;
    align-items: center;
    margin-bottom: 0;
}

h3{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

.Feature-box {
    display: flex; 
    width: 100%; 
   /* background: #fff; */
}

.table-box {
    width: 100%; 
    background: #fff; 
    padding: 1%;
    display: block;
}

.table-box:nth-child(2) {
    margin-bottom: 16px;
}

.Feature-content {
    flex: 1; /* 文字區域占剩餘空間 */
    min-width: 300px; /* 避免太小 */
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.Feature-images {
    display: flex; /* 圖片水平排列 */
    flex-direction: column; /* 上下排列圖片 */
    gap: 20px;
    flex: 1; /* 若畫面太窄，自動換行 */
    min-width: 300px;
    justify-content: center;
}

.Feature-images img {
    width: 100%; /* 兩張圖片並排，空隙約 4% */
    height: auto;
    display: block;
}

.Core-modules {
    display: flex;
    gap: 40px;          /* 左右間距 */
    flex-wrap: wrap;    /* 小螢幕自動換行 */
    padding-top: 10px;
}

.Feature-column {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    flex: 1;
    justify-content: center;  
}

.Feature-column h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

/*.Feature-column ul {
    padding-left: 20px;
}*/

ul > div {
    display: flex;
}

.end-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.end-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.Feature-title{
    font-weight: 600;
    color: #000;
    text-align: left;
}

.feature-list{
    display: flex;
}

.checkicon.fa-solid {
    color: #2956a5;
    margin: 2px 7px 2px 0;
}

.downloadicon.fa-solid {
    color: #007bff;
    margin: 0 10px 0 0;
}


@media (max-width:1024px) {
    .banner-content {
        position: absolute;
    }

}

@media (max-width:768px) {
    .banner{
        height: 35vh;
    }

    .banner-content {
        position: absolute;
        top: 5em;
        padding: 0 10px 0 10px;
    }

    .banner h1{
        font-size: 20px;
        margin: revert;
        text-align: center;
    }

    .Feature-box {
        display: flex; 
        flex-direction: column;
        width: 100%;
    }

    .Feature-flex {
        gap: 20px; /* 文字與圖片間距 */
    }

    .Feature-images img {
        width: 100%; /* 手機版圖片上下排列 */
    }

    .Core-modules {
        flex-direction: column;  /* 上下排列 */
        gap: 20px;
        padding-top: 0;
    }

    .Feature-column h3 {
        margin-top: 10px;
        margin-bottom: 0;
    }

    .Feature-column ul {
    margin-bottom: 0;
    padding-left: 20px;
}
}