.faq-wrapper {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            max-width: 1000px;
            font-family: 'Microsoft JhengHei', 'PingFang TC', 'Noto Sans TC', sans-serif;
        }

        .faq-wrapper .faq-title {
            text-align: center;
            font-size: 2.5rem;
            background: linear-gradient(45deg, #f196b7, #e7003d);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .faq-wrapper .faq-item {
            border-radius: 15px;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .faq-wrapper .faq-item:hover {
            transform: translateY(-5px);
        }

        /* 隱藏 checkbox */
        .faq-wrapper .faq-toggle {
            display: none;
        }

        .faq-wrapper .faq-question {
            background: linear-gradient(135deg, #f196b7 0%, #e7003d 100%);
            color: white;
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            position: relative;
            overflow: hidden;
            border: none;
            outline: none;
            user-select: none;
            border-radius: 15px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
        }

        .faq-wrapper .faq-item:hover .faq-question {
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
        }

        /* 當展開時，問題區域只有上圓角 */
        .faq-wrapper .faq-toggle:checked ~ .faq-question {
            border-radius: 15px 15px 0 0;
        }

        .faq-text {
            font-size: 1.2rem;
        }

        .faq-wrapper .faq-question .faq-text {
            flex: 1;
        }

        .faq-wrapper .faq-question .faq-icon {
            transition: transform 0.3s ease;
            font-size: 1.2rem;
            margin-left: 1rem;
        }

        .faq-wrapper .faq-question::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s;
        }

        .faq-wrapper .faq-question:hover::before {
            left: 100%;
        }

        .faq-wrapper .faq-answer {
						font-size: 1rem;
            background: #f8f9fa;
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            opacity: 0;
            border-radius: 0 0 15px 15px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            margin-top: -1px; /* 消除間隙 */
        }

        /* 當 checkbox 被選中時展開內容 */
        .faq-wrapper .faq-toggle:checked ~ .faq-answer {
            padding: 2rem;
            max-height: 500px;
            opacity: 1;
        }

        /* 當 checkbox 被選中時旋轉箭頭 */
        .faq-wrapper .faq-toggle:checked ~ .faq-question .faq-icon {
            transform: rotate(180deg);
        }

        .faq-wrapper .faq-answer p {
            margin: 0 0 1rem 0;
            line-height: 1.6;
            color: #333;
        }

        .faq-wrapper .faq-answer p:last-child {
            margin-bottom: 0;
        }

        .faq-wrapper .faq-answer strong {
            color: #2d3748;
            font-weight: 600;
        }

        .faq-wrapper .contact-info {
            background: linear-gradient(45deg, #f196b7, #e7003d);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            text-decoration: none;
            display: inline-block;
            margin: 0.5rem 0;
            transition: all 0.3s ease;
        }

        .faq-wrapper .contact-info:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgb(233 117 192 / 40%);
            color: white;
            text-decoration: none;
        }

        /* 響應式設計 */
        @media (max-width: 768px) {
            .faq-wrapper {
                margin: 1rem;
                padding: 1.5rem;
            }
            
            .faq-wrapper .faq-title {
                font-size: 1.8rem;
            }
            
            .faq-wrapper .faq-question {
                padding: 1rem;
            }
            
            .faq-wrapper .faq-toggle:checked ~ .faq-answer {
                padding: 1.5rem;
            }
        }

        /* 改進展開動畫 */
        .faq-wrapper .faq-item {
            position: relative;
        }

        /* 添加平滑滾動效果 */
        html {
            scroll-behavior: smooth;
        }