
    /* 整体背景与字体 */
    .testimonial-section {
        background-color: #f1f5f9; /* 与原图一致的淡蓝灰色背景 */
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        padding: 80px 20px;
        color: #0f172a;
        text-align: center;
    }

    /* 标题样式 */
    .testimonial-section h2 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 60px;
        color: #0f172a;
    }

    /* 卡片容器 - Flex 布局 */
    .testimonial-container {
        display: flex;
        justify-content: center;
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
        flex-wrap: wrap;
    }

    /* 单个卡片样式 */
    .testimonial-card {
        background: #ffffff;
        border-radius: 24px; /* 大圆角 */
        padding: 40px;
        flex: 1;
        min-width: 300px;
        max-width: 380px;
        text-align: left;
        position: relative; /* 为引号定位 */
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    /* 装饰用双引号图标 */
    .testimonial-card::after {
        content: "”";
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 100px;
        font-family: serif;
        color: #e2e8f0; /* 浅蓝色感官 */
        line-height: 1;
        opacity: 0.8;
    }

    /* 评论正文 */
    .testimonial-text {
        font-size: 18px;
        line-height: 1.6;
        color: #334155;
        font-style: italic;
        margin-bottom: 30px;
        position: relative;
        z-index: 1;
    }

    /* 姓名 */
    .testimonial-author {
        font-size: 18px;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 4px;
        display: block;
    }

    /* 职位/头衔 */
    .testimonial-role {
        font-size: 15px;
        color: #64748b;
        font-weight: 400;
    }

    /* 移动端适配 */
    @media (max-width: 768px) {
        .testimonial-section {
            padding: 50px 15px;
        }
        .testimonial-section h2 {
            font-size: 30px;
            margin-bottom: 40px;
        }
        .testimonial-card {
            max-width: 100%;
            padding: 30px;
        }
    }
