/* 2025 Terms Section 樣式 */
.terms {
    position: relative;
    overflow: hidden;
    background-image: url('../../img/2025/terms_background.jpg');
    height: 1000px;
}

.terms>* {
    z-index: 2;
}

.terms_pic1 {
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 35%;
    height: auto;
    z-index: 4;
}

.terms_pic2 {
    position: absolute;
    bottom: 131px;
    right: 500px;
    width: 15%;
    height: auto;
    z-index: 4;
}

.terms-geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.terms-shape {
    position: absolute;
    border-radius: 50%;
}

/* 檸檬半圓形 (左邊) */
.terms-shape-circle-orange {
    width: 120px;
    height: 120px;
    background-color: #F0FF96;
    bottom: 20%;
    left: -60px;
    z-index: 3;
}

/* 橙色半圓形 (底部中間) */
.terms-shape-circle-bottom-orange {
    width: 250px;
    height: 200px;
    background-color: #FF8F60;
    bottom: -80px;
    left: 45%;
    border-radius: 200px 200px 0 0;
    z-index: 2;
}

/* 黃綠色半圓形 (底部中間偏右) */
.terms-shape-circle-bottom-yellow {
    width: 180px;
    height: 100px;
    background-color: #F0FF96;
    bottom: -30px;
    left: 50%;
    border-radius: 150px 150px 0 0;
    z-index: 3;
}

/* 深藍色圓形 (右邊上方) */
.terms-shape-circle-right-navy {
    width: 40px;
    height: 40px;
    background-color: #333477;
    top: 25%;
    right: 35px;
    z-index: 3;
}

/* 橙色圓形 (右邊下方) */
.terms-shape-circle-right-orange {
    width: 200px;
    height: 200px;
    background-color: #FF8F60;
    top: 10%;
    right: -100px;
    z-index: 2;
}

/* 黃綠色圓形 (條件文字旁邊) */
.terms-shape-circle-condition {
    width: 40px;
    height: 40px;
    background-color: #F0FF96;
    top: 17%;
    left: 30%;
    z-index: 3;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .terms-shape-circle-orange {
        width: 100px;
        height: 100px;
        left: -50px;
        bottom: 25%;
    }

    .terms-shape-circle-bottom-orange {
        width: 150px;
        height: 75px;
        bottom: -37px;
        left: 25%;
    }

    .terms-shape-circle-bottom-yellow {
        width: 120px;
        height: 60px;
        bottom: -30px;
        left: 40%;
    }

    .terms-shape-circle-right-navy {
        width: 150px;
        height: 150px;
        right: -75px;
        top: 20%;
    }

    .terms-shape-circle-right-orange {
        width: 150px;
        height: 150px;
        right: -75px;
        bottom: 30%;
    }

    .terms-shape-circle-condition {
        width: 60px;
        height: 60px;
        top: 40%;
        right: 8%;
    }
}

@media (max-width: 480px) {
    .terms_pic1 {
        width: 50%;
        right: 20px;
    }

    .terms_pic2 {
        left: -25px;
        bottom: 15px;
        width: 50%;
    }

    .terms-shape-circle-orange {
        width: 40px;
        height: 40px;
        left: 30px;
        bottom: 19%;
    }

    .terms-shape-circle-bottom-orange {
        width: 120px;
        height: 80px;
        bottom: -10px;
        left: 20%;
    }

    .terms-shape-circle-bottom-yellow {
        width: 90px;
        height: 45px;
        bottom: 0;
        left: 35%;
    }

    .terms-shape-circle-right-navy {
        width: 30px;
        height: 30px;
        right: 10px;
        top: 73%;
    }

    .terms-shape-circle-right-orange {
        width: 100px;
        height: 100px;
        right: -37px;
        top: 65%;
    }

    .terms-shape-circle-condition {
        width: 30px;
        height: 30px;
        top: 6%;
        left: 65%;
    }
}