<style>
    .tcc-integration-process {
        font-family: Arial, sans-serif;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        text-align: center;
    }
    .tcc-process-steps {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
    }
    .tcc-process-step {
        flex: 0 1 calc(33.333% - 40px);
        margin: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .tcc-process-icon {
        width: 100px;
        height: 100px;
        margin: 0 auto 20px;
        background-color: #f0f0f0;
        border: 3px solid #0600FF;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        color: #0600FF;
        transition: all 0.3s ease;
    }
    .tcc-process-step:hover .tcc-process-icon {
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(6, 0, 255, 0.3);
    }
    .tcc-process-title {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 10px;
        color: #333;
    }
    .tcc-process-description {
        font-size: 1rem;
        line-height: 1.5;
        color: #666;
        flex-grow: 1;
    }
    @media (max-width: 1200px) {
        .tcc-process-step {
            flex: 0 1 calc(50% - 40px);
        }
    }
    @media (max-width: 768px) {
        .tcc-process-steps {
            flex-direction: column;
        }
        .tcc-process-step {
            max-width: 100%;
            width: 100%;
        }
    }
</style>