
    /* 1. 基础容器 */
    .testimonial-wrapper {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        background-color: #ffffff;
        padding: 80px 20px;
        max-width: 1200px;
        margin: 0 auto;
        color: #0f172a;
    }

    /* 顶部标题区域 */
    .testimonial-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .testimonial-header h2 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 15px;
        letter-spacing: -0.02em;
    }

    .testimonial-header p {
        font-size: 18px;
        color: #64748b;
    }

    /* 2. 网格布局 - 2列 */
    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* 3. 单个卡片样式 */
    .testimonial-card {
        background-color: #f8fafc; /* 原图那种非常浅的灰色背景 */
        border-radius: 40px; /* 大圆角 */
        padding: 50px;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
    }

    /* 左上角对话气泡图标 (SVG) */
    .quote-icon-box {
        width: 40px;
        height: 40px;
        color: #56B8B8; /* 使用主色调 */
        opacity: 0.4;
        margin-bottom: 30px;
    }

    /* 评价文字内容 */
    .quote-content {
        font-size: 18px;
        line-height: 1.7;
        color: #334155;
        font-style: italic; /* 斜体 */
        margin-bottom: 40px;
        flex-grow: 1; /* 确保底部信息对齐 */
    }

    /* 底部作者信息 */
    .quote-author-info {
        display: flex;
        flex-direction: column;
    }

    .quote-author-info strong {
        font-size: 17px;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 5px;
    }

    .quote-author-info span {
        font-size: 16px;
        color: #56B8B8; /* 公司名称使用主色调 */
        font-weight: 600;
    }

    /* 4. 响应式适配 */
    @media (max-width: 992px) {
        .testimonial-grid {
            grid-template-columns: 1fr; /* 手机和平板变为 1 列 */
        }
        .testimonial-card {
            padding: 40px 30px;
        }
        .testimonial-header h2 {
            font-size: 32px;
        }
    }
