
    /* FAQ 容器样式 */
    .minepetpet-faq-section {
        background-color: #F0F5F4;
        padding: 60px 20px;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        color: #333;
    }

    .minepetpet-faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .minepetpet-faq-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .minepetpet-faq-header h2 {
        font-size: 32px;
        color: #2c3e50;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .minepetpet-faq-header p {
        color: #666;
        font-size: 16px;
    }

    /* 单个 FAQ 项目样式 */
    .minepetpet-faq-item {
        background-color: #FFFFFF;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.02);
        overflow: hidden;
        border: 1px solid #e0e0e0;
        transition: all 0.3s ease;
    }

    .minepetpet-faq-item:hover {
        box-shadow: 0 6px 12px rgba(0,0,0,0.05);
        border-color: #d1d1d1;
    }

    /* 问题部分 (Summary) */
    .minepetpet-faq-question {
        padding: 20px 25px;
        cursor: pointer;
        font-weight: 600;
        font-size: 18px;
        position: relative;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #2c3e50;
        outline: none; /* 移除点击时的默认轮廓线 */
    }

    .minepetpet-faq-question::-webkit-details-marker {
        display: none;
    }

    /* 自定义加号图标 */
    .minepetpet-faq-question::after {
        content: '+';
        font-size: 24px;
        color: #888;
        font-weight: 300;
        transition: transform 0.3s ease;
    }

    /* 展开状态下的图标变化 */
    details[open] .minepetpet-faq-question::after {
        content: '-';
        color: #333;
    }

    details[open] .minepetpet-faq-question {
        border-bottom: 1px solid #F0F5F4;
    }

    /* 回答部分 */
    .minepetpet-faq-answer {
        padding: 20px 25px;
        font-size: 16px;
        line-height: 1.6;
        color: #555;
        background-color: #FFFFFF;
        /* 添加简单的淡入动画 */
        animation: fadeIn 0.3s ease-in-out;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-5px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .minepetpet-faq-answer p {
        margin: 0;
    }

    @media (max-width: 600px) {
        .minepetpet-faq-header h2 { font-size: 24px; }
        .minepetpet-faq-question { font-size: 16px; padding: 15px 20px; }
        .minepetpet-faq-answer { padding: 15px 20px; }
    }
