
    /* 1. 基础容器 */
    .cta-final-section {
        background-color: #56B8B8; /* 您的主色调 */
        padding: 100px 20px;
        text-align: center;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: #ffffff;
    }

    /* 2. 标题样式 */
    .cta-final-section h2 {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 40px;
        letter-spacing: -0.02em;
        line-height: 1.2;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    /* 3. 按钮布局 - 居中单个按钮 */
    .cta-final-btns {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }

    /* 橙色按钮 - Book a Demo */
    .btn-orange-demo {
        padding: 20px 55px; /* 稍微增加了内边距，使单按钮更大气 */
        border-radius: 60px;
        font-size: 22px; /* 略微调大字号 */
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background-color: #ff7b1a; /* 活力橙色 */
        color: #ffffff;
        box-shadow: 0 10px 30px rgba(255, 123, 26, 0.4);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .btn-orange-demo:hover {
        transform: translateY(-4px);
        background-color: #f06a00;
        box-shadow: 0 20px 40px rgba(255, 123, 26, 0.5);
    }

    /* 4. 底部小字说明 */
    .cta-final-subtext {
        font-size: 16px;
        opacity: 0.9;
        font-weight: 500;
        margin-top: 20px;
    }

    /* 5. 移动端适配 */
    @media (max-width: 768px) {
        .cta-final-section {
            padding: 60px 20px;
        }
        .cta-final-section h2 {
            font-size: 30px;
        }
        .btn-orange-demo {
            width: 90%;
            justify-content: center;
            padding: 16px 0;
            font-size: 19px;
        }
    }
