@charset "utf-8";
    /* 常見問題區塊樣式 - 優化版 */
    .faq-section {
        background: linear-gradient(135deg, #e9f2fc 0%, #f0f7ff 100%);
        padding: 80px 0;
        font-family: "Microsoft JhengHei", "微軟正黑體", Arial, sans-serif;
        width: 100%;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .faq-section .container {
        max-width: 95%;
        width: 95%;
        margin: 0 auto;
        background: white;
        border-radius: 25px;
        box-shadow: 0 20px 50px rgba(0, 91, 172, 0.2);
        padding: 80px 100px;
        position: relative;
        overflow: hidden;
    }

    .faq-section .container:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 10px;
        background: linear-gradient(90deg, #005bac, #0072d2);
    }

    .faq-main-title {
        color: #005bac;
        text-align: center;
        font-size: 4rem;
        margin-bottom: 30px;
        font-weight: 900;
        position: relative;
        display: inline-block;
        width: 100%;
        letter-spacing: 1.5px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    }

    .faq-main-title:after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 8px;
        background: linear-gradient(90deg, #005bac, #0072d2);
        border-radius: 5px;
    }

    .faq-subtitle {
        text-align: center;
        color: #666;
        font-size: 2.2rem;
        max-width: 1200px;
        margin: 50px auto 80px;
        line-height: 1.8;
        font-weight: 500;
    }

    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .faq-item {
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 85, 172, 0.15);
        overflow: hidden;
        transition: all 0.4s ease;
        border: 3px solid #f0f7ff;
        position: relative;
    }

    .faq-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0, 85, 172, 0.25);
    }

    .faq-question {
        background: linear-gradient(135deg, #005bac, #0072d2);
        padding: 40px 50px 40px 140px;
        cursor: pointer;
        position: relative;
        display: flex;
        align-items: center;
    }

    .faq-question:before {
        content: 'Q';
        position: absolute;
        left: 60px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.3);
        width: 70px;
        height: 70px;
        border-radius: 50%;
        text-align: center;
        line-height: 70px;
        font-weight: bold;
        font-size: 2rem;
    }

    .faq-question h3 {
        color: white;
        font-size: 2.2rem;
        margin: 0;
        font-weight: 800;
        line-height: 1.7;
        letter-spacing: 0.8px;
    }

    .faq-answer {
        padding: 45px 50px 45px 140px;
        line-height: 1.9;
        position: relative;
    }

    .faq-answer:before {
        content: 'A';
        position: absolute;
        left: 60px;
        top: 45px;
        color: #005bac;
        font-weight: bold;
        font-size: 2rem;
        background: #e9f2fc;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        text-align: center;
        line-height: 70px;

    }

    .faq-answer p {
        margin: 0;
        color: #444;
        font-size: 2.1rem; /* PC端微調：從1.8rem增加到2.1rem */
        line-height: 2.0;
    }

    .faq-answer strong {
        color: #005bac;
        font-weight: 900;
    }

    /* 響應式設計 - 平板與小型電腦 */
    @media (max-width: 1600px) {
        .faq-section .container {
            padding: 70px 80px;
        }
        
        .faq-main-title {
            font-size: 3.6rem;
        }
        
        .faq-subtitle {
            font-size: 2rem;
        }
        
        .faq-question {
            padding: 35px 45px 35px 130px;
        }
        
        .faq-question:before {
            left: 55px;
        }
        
        .faq-answer {
            padding: 40px 45px 40px 130px;
        }
        
        .faq-answer:before {
            left: 55px;
        }
        
        .faq-answer p {
            font-size: 1.9rem; /* 微調 */
        }
    }

    @media (max-width: 1400px) {
        .faq-section .container {
            padding: 60px 70px;
        }
        
        .faq-main-title {
            font-size: 3.2rem;
        }
        
        .faq-subtitle {
            font-size: 1.8rem;
        }
        
        .faq-question {
            padding: 35px 45px 35px 120px;
        }
        
        .faq-question:before {
            left: 50px;
            width: 65px;
            height: 65px;
            line-height: 65px;
            font-size: 1.8rem;
        }
        
        .faq-question h3 {
            font-size: 2rem;
        }
        
        .faq-answer {
            padding: 40px 45px 40px 120px;
        }
        
        .faq-answer:before {
            left: 50px;
            top: 40px;
            width: 65px;
            height: 65px;
            line-height: 65px;
            font-size: 1.8rem;
        }
        
        .faq-answer p {
            font-size: 1.7rem; /* 微調 */
        }
    }

    @media (max-width: 1200px) {
        .faq-section .container {
            padding: 50px 60px;
        }
        
        .faq-main-title {
            font-size: 2.8rem;
        }
        
        .faq-subtitle {
            font-size: 1.7rem;
        }
        
        .faq-question {
            padding: 30px 40px 30px 110px;
        }
        
        .faq-question:before {
            left: 45px;
            width: 60px;
            height: 60px;
            line-height: 60px;
            font-size: 1.7rem;
        }
        
        .faq-question h3 {
            font-size: 1.8rem;
        }
        
        .faq-answer {
            padding: 35px 40px 35px 110px;
        }
        
        .faq-answer:before {
            left: 45px;
            top: 35px;
            width: 60px;
            height: 60px;
            line-height: 60px;
            font-size: 1.7rem;
        }
        
        .faq-answer p {
            font-size: 1.6rem; /* 微調 */
        }
    }

    /* 響應式設計 - 平板設備 */
    @media (max-width: 992px) {
        .faq-section .container {
            padding: 40px 50px;
        }
        
        .faq-main-title {
            font-size: 2.5rem;
        }
        
        .faq-subtitle {
            font-size: 1.6rem;
            margin: 40px auto 60px;
        }
        
        .faq-question {
            padding: 28px 35px 28px 100px;
        }
        
        .faq-question:before {
            left: 40px;
            width: 55px;
            height: 55px;
            line-height: 55px;
            font-size: 1.6rem;
        }
        
        .faq-question h3 {
            font-size: 1.7rem;
        }
        
        .faq-answer {
            padding: 32px 35px 32px 100px;
        }
        
        .faq-answer:before {
            left: 40px;
            top: 32px;
            width: 55px;
            height: 55px;
            line-height: 55px;
            font-size: 1.6rem;
        }
        
        .faq-answer p {
            font-size: 1.5rem; /* 微調 */
        }
    }

    /* 響應式設計 - 小型平板與大型手機 */
    @media (max-width: 768px) {
        .faq-section {
            padding: 60px 0;
        }
        
        .faq-section .container {
            width: 96%;
            padding: 35px 40px;
        }
        
        .faq-main-title {
            font-size: 2.4rem; /* 手機端增大標題字體 */
        }
        
        .faq-subtitle {
            font-size: 1.7rem; /* 手機端增大副標題字體 */
            margin: 35px auto 50px;
        }
        

        .faq-list {
            gap: 30px;
        }
        
        .faq-question {
            padding: 25px 30px 25px 90px;
        }
        
        .faq-question:before {
            left: 35px;
            width: 50px;
            height: 50px;
            line-height: 50px;
            font-size: 1.7rem; /* 手機端增大Q標記字體 */
        }
        
        .faq-question h3 {
            font-size: 1.8rem; /* 手機端增大問題字體 */
        }
        
        .faq-answer {
            padding: 30px 30px 30px 90px;
        }
        
        .faq-answer:before {
            left: 35px;
            top: 30px;
            width: 50px;
            height: 50px;
            line-height: 50px;
            font-size: 1.7rem; /* 手機端增大A標記字體 */
        }
        
        .faq-answer p {
            font-size: 1.7rem; /* 手機端增大回答字體 */
        }
    }

    /* 響應式設計 - 中型手機 */
    @media (max-width: 576px) {
        .faq-section .container {
            padding: 30px 25px;
        }
        
        .faq-main-title {
            font-size: 2.2rem; /* 手機端增大標題字體 */
        }
        
        .faq-subtitle {
            font-size: 1.6rem; /* 手機端增大副標題字體 */
        }
        
        .faq-question {
            padding: 22px 25px 22px 80px;
        }
        
        .faq-question:before {
            left: 30px;
            width: 45px;
            height: 45px;
            line-height: 45px;
            font-size: 1.6rem; /* 手機端增大Q標記字體 */
        }
        
        .faq-question h3 {
            font-size: 1.7rem; /* 手機端增大問題字體 */
        }
        
        .faq-answer {
            padding: 27px 25px 27px 80px;
        }
        
        .faq-answer:before {
            left: 30px;
            top: 27px;
            width: 45px;
            height: 45px;
            line-height: 45px;
            font-size: 1.6rem; /* 手機端增大A標記字體 */
        }
        
        .faq-answer p {
            font-size: 1.6rem; /* 手機端增大回答字體 */
        }
    }

    /* 響應式設計 - 小型手機 */
    @media (max-width: 480px) {
        .faq-section .container {
            padding: 25px 20px;
        }
        
        .faq-main-title {
            font-size: 2rem; /* 手機端增大標題字體 */
        }
        
        .faq-subtitle {
            font-size: 1.5rem; /* 手機端增大副標題字體 */
        }
        
        .faq-question {
            padding: 20px 20px 20px 75px;
        }
        
        .faq-question:before {
            left: 25px;
            width: 42px;
            height: 42px;
            line-height: 42px;
            font-size: 1.5rem; /* 手機端增大Q標記字體 */
        }
        
        .faq-question h3 {
            font-size: 1.6rem; /* 手機端增大問題字體 */
        }
        
        .faq-answer {
            padding: 25px 20px 25px 75px;
        }
        
        .faq-answer:before {
            left: 25px;
            top: 25px;
            width: 42px;
            height: 42px;
            line-height: 42px;
            font-size: 1.5rem; /* 手機端增大A標記字體 */
        }
        
        .faq-answer p {
            font-size: 1.5rem; /* 手機端增大回答字體 */
        }
    }

    /* 響應式設計 - 最小型手機 */
    @media (max-width: 360px) {
        .faq-section .container {
            padding: 20px 15px;
        }
        
        .faq-main-title {
            font-size: 1.9rem; /* 手機端增大標題字體 */
        }
        
        .faq-subtitle {
            font-size: 1.45rem; /* 手機端增大副標題字體 */
        }
        
        .faq-question {
            padding: 18px 15px 18px 70px;
        }
        
        .faq-question:before {
            left: 20px;
            width: 40px;
            height: 40px;
            line-height: 40px;
            font-size: 1.45rem; /* 手機端增大Q標記字體 */
        }
        
        .faq-question h3 {
            font-size: 1.55rem; /* 手機端增大問題字體 */
        }
        
        .faq-answer {
            padding: 22px 15px 22px 70px;
        }
        
        .faq-answer:before {
            left: 20px;
            top: 22px;
            width: 40px;
            height: 40px;
            line-height: 40px;
            font-size: 1.45rem; /* 手機端增大A標記字體 */
        }
        
        .faq-answer p {
            font-size: 1.45rem; /* 手機端增大回答字體 */
        }
    }
